/ Published in: PHP
Use this function to pull all columns from a single database field.
getrowdata(tablename,rowid,prefix);
You would call this function like:
getrowdata("users",$_SESSION['user'],"user_");
The prefix is the prefix you want for the array names, so if I have a field in my "users" table called "username", the example above would output the variable "$user_username = 'data';"
getrowdata(tablename,rowid,prefix);
You would call this function like:
getrowdata("users",$_SESSION['user'],"user_");
The prefix is the prefix you want for the array names, so if I have a field in my "users" table called "username", the example above would output the variable "$user_username = 'data';"
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function getrowdata($tablename,$rowid,$prefix){ //Get field data foreach($field_array as $field_key=>$field_value){ //Setup a global variable name for this data based on prefix global ${"{$prefix}$field_key"}; } } }
URL: http://www.jeffkilroy.com