I just started..
How do you transfer a variable from one web-page to another
I try to use a form like this:
<?
echo("<P>
<FORM method='POST' action='join2.php'>
text for button
<INPUT type='submit' value='Next step'>
<INPUT type='hidden' name='htmlVariableName' value='$phpVariableName'>
</FORM>
");
?>
and catch it in join2.php by:
$phpVariableName=htmlVariableName;
echo"$phpVariableName";
This do not work.
Can anyone tel me what should be done
Neither books, php-manual nor HTML-specification does tel me.
Olav
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]