On Apr 8, 2006, at 12:55 PM, John Hicks wrote:

$recordID = $_GET['recordID'];

Note that your request URL has a value for 'ID' whereas your program is looking for a value for 'recordID'.

Changed above to:
$recordID = $_GET['ID'];

And all was right with the world.

Thanks John!

david

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to