i think i'm just drawing a blank, will someone please run this script, in the input box type something like
this is a test "this is a test"
when you get to the third step, it echos this is a test \
why?
<?php
if($test1)
{
echo "<form method=\"post\" action=\"$SCRIPT_NAME?test2=1\">
<input type=\"text\" name=\"test\" >
<input type=\"submit\">
</form>";
} elseif( $test2 )
{
echo "<form method=\"post\" action=\"$SCRIPT_NAME?test3=1\">
<input type=\"hidden\" name=\"test\" value=\"$test\">
<input type=\"submit\">
</form>
";
} else {
$my = $test;
echo $my;
}
?>