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>
<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>