It should be simple, but I am stumped.
I have a series of pages at a website that allows a user to apply for a postion. A .php script uses an include() routine to load data from a MySQL table into the first page of the series.
After the page is edited, I want to save the data back to the table, so I define my form
<form method="post" action="#process">
where #process is a tag in the html portion of the script
I use another include() routine to save the data back to the table. Everything works to this point.
How do I now send the system to the next page in the sequence. Using the Header(Location) generates an error.
Alan Arons
I have a series of pages at a website that allows a user to apply for a postion. A .php script uses an include() routine to load data from a MySQL table into the first page of the series.
After the page is edited, I want to save the data back to the table, so I define my form
<form method="post" action="#process">
where #process is a tag in the html portion of the script
I use another include() routine to save the data back to the table. Everything works to this point.
How do I now send the system to the next page in the sequence. Using the Header(Location) generates an error.
Alan Arons