Why wont it direct
Posted: Mon May 13, 2002 4:36 am
The form
The sorter
The displayer.
Problem.
After submitting the form it just stops on mixin the php instead of fowarding to the namesays.php with the new inputs...why??? thx
Code: Select all
<form method="POST" action="mixin.php">
<div align="center"><font face="Verdana" size="2">Name: </font>
<br>
<font face="Verdana" size="2">
<input type="text" NAME="name">
</font> <font face="Verdana" size="2"><br>
</font><font face="Verdana" size="2"><br>
Says:</font> <br>
<font face="Verdana" size="2">
<textarea rows="8" NAME="says"></textarea>
</font> </div>
<p>
<input type="submit" value="Send" NAME="send">
<input type="reset" value="Reset" name="B2"></form>Code: Select all
<?
$send = "namesays.php?name=$name&says=$says";
?>Code: Select all
<?=$name?>
says "
<?=$says?>
"Problem.
After submitting the form it just stops on mixin the php instead of fowarding to the namesays.php with the new inputs...why??? thx