Re: [php-list] creating a multiple page form

2007-02-12 Thread Rob M
- Original Message - From: "amhalperin" How can I create a multiple page form and collect data from that into my php file? I have one page now but I want to add more pages. my html file is - Freehand code - probably many syntax errors - VERY LOW SECURITY - use

Re: [php-list] creating a multiple page form

2007-02-12 Thread Mike Brandonisio
Hi, You can use sessions to store the post data from page to page. To get a multi page form use logic in your script to display each form part. session_start(); if ( $_session['part'] == 1) { //show part 1 form } if ( $_session['part'] == 2) { //show part 2 form } Don't forget to va

[php-list] creating a multiple page form

2007-02-11 Thread amhalperin
How can I create a multiple page form and collect data from that into my php file? I have one page now but I want to add more pages. my html file is <"form method="POST" action="capitals.php"> a short quiz, then thanks. adam