SEARCH:
Previous: Hidden  

HiddenFromTable

string Table_id
array row (optional)
April 18, 2007


Generates one hidden variable for each column in Table_id. The name of the variables is formed as $table_id."_".$column_id.

If the second parameter, a Row Array, is passed, the hidden variables will be populated with values from that array, otherwise they will be blank.

Example
PHP Code:
hiddenFromTable('nodes');
Will produce this in the HTML
Array
(
    [...and forth...] => 
)

Previous: Hidden