Hi,
I'm trying to pass a variable on to a new page using a form. I have
echo
"<FORM method='GET' action='bug2.php?bugid=$bugid'>
<input type='text' name='test'>
<input name='submit' value='submit'>
</FORM>";
where I know the value of $bugid on this page.
bug2.php is simply
echo $bugid;
echo $_GET[test];
$bugid is empty, and the URL shows only
http://ducati/swbugproj/bug2.php?test=gf
My question is: can variables not be passed from a form the same way as if it were an <a href> where I know this works?
Sorry to be dense!
Jenny.