Click to See Complete Forum and Search --> : How to get Info


r4gn0
08-14-2006, 11:12 AM
if im using

<input name="Submit2" type="submit" value="Borrar">
<input type="hidden" name="id" value="<?php echo($row[0])?>"/>

what should i put in the Edit page to recieve the value?

tabzter
08-14-2006, 12:10 PM
all form values are stored in the get array.

To access the value contained in <input type="hidden" name="id" value="<?php echo($row[0])?>"/>

try this:

echo $_GET['id'];


that should output whatever was stored in $row[0]