post
Posted: Sun May 03, 2009 12:17 pm
hi everybody
I am a biginer in php
could you tell me why this code doesn't work
page1.htm
page2.php
why page2.php show nothing?
thanks
I am a biginer in php
could you tell me why this code doesn't work
page1.htm
Code: Select all
...
<form action="page2.php" method="post">
<input type="text" name="mytext" />
<input type="submit" value="click me" />
</form>
...
Code: Select all
...
<?php
print $mytext;
?>
...
thanks