Decode
24-09-2007, 02:45 PM
Im a noob at php, and i need to know how to make some data from 1 page link to the next without a submit button; This is what ive got so far;
Page1.html
<form methord="post" action="page2.html">
Name: <input type="name" value="" name="name">
<input type="submit" value="go!">
</form>
Page2.html
<head>
<meta http-equiv="refresh" content="5;page3.html">
</head>
<body>
<form methord="post" action="page3.html">
<input type="hidden" value="<?=$name?>">
</form>
</body>
Page3.html
<Body>
Hi <?=$name?>!
</body>
+Rep for help,
Tom
Moved by Mattps22004 (Forum Moderator) from Website Designing & Development: Please post in the correct forum next time, thanks :).
Page1.html
<form methord="post" action="page2.html">
Name: <input type="name" value="" name="name">
<input type="submit" value="go!">
</form>
Page2.html
<head>
<meta http-equiv="refresh" content="5;page3.html">
</head>
<body>
<form methord="post" action="page3.html">
<input type="hidden" value="<?=$name?>">
</form>
</body>
Page3.html
<Body>
Hi <?=$name?>!
</body>
+Rep for help,
Tom
Moved by Mattps22004 (Forum Moderator) from Website Designing & Development: Please post in the correct forum next time, thanks :).