|
Posted by CAH on 10/19/28 11:28
Hi
I need to make a multi-page form with php? I am looking for some
tutorials on how to do this in a simple way, but I need to store the
result of the multiform in sessions registered variables.
So a bunch of links to tutorials will do the trick..
The tuturials I have found is a litle over the top for my project,
security is not an isue, the data passed is not sensitive. I am trying
with something along these lines.
<?php
session_register("BoatID");
session_register("SailID");
?>
<?php
echo "GUIDE -1-<br>";
echo "sailidname".$sailidname."<br>";
echo "BoatID".$SailID."<br>";
echo "boatidname".$boatidname."<br>";
echo "BoatID".$BoatID."<br>";
echo "
<form method=post action='guide2.php'>
<input type=\"radio\" name=\"boatidname\" value=\"0\"
checked=\"checked\">
<input type=\"radio\" name=\"boatidname\" value=\"1\">
<input type=\"radio\" name=\"boatidname\" value=\"2\">
<input type=\"radio\" name=\"boatidname\" value=\"3\">
<input type=\"radio\" name=\"boatidname\" value=\"4\">
<input type=\"radio\" name=\"boatidname\" value=\"5\">
<input type=\"radio\" name=\"boatidname\" value=\"6\">
<input type=\"radio\" name=\"boatidname\" value=\"7\">
<input type=\"radio\" name=\"boatidname\" value=\"8\">
<input type=\"radio\" name=\"boatidname\" value=\"9\">
<input type=submit>
</form>
";
?>
But I would like to see a tutorial on the subject, thanks for any help
in advance.
Cah
Navigation:
[Reply to this message]
|