PHP/MySQL - Get Row Data


/ Published in: PHP
Save to your folder(s)

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';"

URL: http://www.jeffkilroy.com

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.