[PHP] Re: Submit Form

2003-01-09 Thread DreamRiver
Steven (cc list), The sticky part is: ---User comes back next day, clicks load For that functionality you will need to remember the user, the last project they were using and the form they were 'on'. How? You can have the user log in to their last saved state (which you will save when they

[PHP] Re: How can I redirect to another php page

2003-01-09 Thread DreamRiver
Teo, You may want something like this: switch( $Color ) { case "Yellow": header("Location: yellow.php"); break; case "Green": header("Location: green.php"); break; default: echo"No switch value present for Color - contact the webmaster."; exit; }