Re: [PHP] Set variable outside of scope (redo)

2006-01-05 Thread Aaron Koning
Generally, scope is fairly loose in PHP. If $row is set by mysql_fetch_array(...) it should carry throughout your script as it is, unless modified. Try commenting out non-relavant pieces of the code and var_dump(...)ing the $row variable at the start and throughout the script. Aaron On 1/5/06, M

[PHP] Set variable outside of scope (redo)

2006-01-05 Thread Mike Tuller
Excuse the last post, I didn't have all the code it there. I have a table listing items in a database, and have a delete button next to each item, and I want to be able to click on the delete and delete only that record in the database and then reload the page where it would display the updated i