The page picks it up and works fine. I need to pass this same variable to the next page to perform another task but nothing I've tried works.
I'm wanting to pass $ID to the next page as $IDNO. I' trying to do it with a submit button. Where my confusion comes in is in the "form action" area.
<form action="deleteexe.php?xxx=xxx" method="post">
What goes in the x's.
Then
<INPUT TYPE=SUBMIT NAME="xxx" VALUE="Delete!">
What goes in "xxx"
Finally on page "deleteexe.php what do I have to do to pick up the variable so I can use it as $IDNO for use in a "Delete Query"
Do I need to use a command similar to this:
$IDNO = ("".$HTTP_POST_VARS['xxxxx']."");
Again. I'm new and althought the books are good they don't tell it all.
Thanks in advance
Jim