On Mon, 2002-08-26 at 13:25, Gerd Ulrich wrote:
> Hello, I want to build a questionaire where the user is guided through five
> pages of questions. How can I program PHP that the user gets to the second
> page after pushing the "Submit"-Button?
> My solution printed here doesn't work.
> Any hints are greatly apreciated!
> 
> S. Maier
> 
> <?php
> if ($submit) {
>  // process form
> require ('.htmypasswd');
> $verbnr = mysql_connect ($dbhost,$dbuser,$dbpasswd);
> $db = mysql_connect($dbhost,$dbuser,$dbpasswd);
> mysql_select_db("pretest",$db);
> $sql = "INSERT INTO frage3 (a1,a2,a3,be_fe01,be_fe02) VALUES
> ('$a1','$a2','$a3','$be_fe01','$be_fe02')";
> $result = mysql_query($sql);
> header ("Location: http://www.example.com";);
> exit;
> } else{
>   // display form
> ?>

easiest way I know to do it is in your form action . as in <form
action="new_page.php> you then can put the above code on that page and
it will process it and still print out the page you want.



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to