In setting up a "delete record" page, i want to echo the record to the user first, to make sure they really want to delete it. I am currently doing it thus:
$foolish_array = mysql_fetch_array($record)$foo = foolish_array["foo"];
$bar = foolish_array["bar"];
etc....for each column.
I KNOW there is an easier way; where I can just define variables for each column name.
How can I do that?
Thanks for your help.