|
Posted by comex on 10/04/94 11:36
> > if ($row[range] != "")
This should be $row['range'], not $row[range], although it doesn't
make a difference unless you define a constant named range.
Your problem isn't actually scope, it's that your PHP script is being
called twice. Once to show the form, once to submit it. The second
time, your script doesn't have any of the things you set the first
time.
<input type=\"hidden\" name=\"id\" value=\"$row[id]\" />
If you put that in your delete form, you could use $_POST['id'] to get
the proper id.
Navigation:
[Reply to this message]
|