1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 15:16:44 +02:00

Updated Technical Wiki (markdown)

Ap.Muthu
2016-03-18 07:01:37 +08:00
parent 1bf0634b39
commit 94c2f3c9c9

@@ -177,3 +177,10 @@ $field = Array
}
````
* To link a table's (````chq_batches````) displayed field (````ORID````) value to an external file as a link with it's value in the url using a $_GET variable (````orid````):
````
function selectLink($val, $field) {
if ($field['field'] == 'ORID' && $_GET['select'] == 'chq_batches' && $val !== NULL)
return 'orslip.php?select=chq_batches&orid='.$val;
}
````