my simple form but can't work!!

A

Anonymous

Guest
My form: testing.php
<html>
<body>
<form action='testing1.php' method='post'>
<?php

echo "name= <input name=a >";
echo "<input type=submit>";

?>
</form>
</body>
</html>


testing1.php
<html>
<body>

<?php
echo $a;

?>

</body>
</html>
 
register_globals is now turned off.... use $_POST['a'] instead of just $a :wink:
 
If there's one question we've answered too many times, it's this one. See this post (it's the post by me toward the bottom).
 
Back
Top