$var=$_POST['Stock']; in one page
further down in the code, if certain conditions are met, I want the user to click on a link that will take them to a form to fill in some info. I need to have the data that is in $var passed along to that new url.
So I have
$var=$_POST['Stock']; in one page . . . echo '<a href="input.php?Stock">Click to add</a>'
input.php is the form page. How do I get the Stock from the fisrt page to the second using the ? syntax?
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php