Re: [PHP] Passing var from one page to itself

2008-12-25 Thread Aslan
Hi there, Thanks so much everyone I really appreciate the help! I have it working now using hidden tags from each page to the next. www.adslgeek.com/troubleshooter Merry Christmas! Cheers Aslan tedd wrote: At 4:10 PM +1300 12/21/08, Aslan wrote: Hey there, I have a problem where I have a

Re: [PHP] Passing var from one page to itself

2008-12-21 Thread kspal
hello, you can use session to store your variables between pages. Aslan a écrit : Hey there, I have a problem where I have a simple -script that I am wanting to pass back to itself three times 1) Symptoms - 2) Troubleshooting questions 3) Answer to problem The page is passing the vars

Re: [PHP] Passing var from one page to itself

2008-12-21 Thread Jason Paschal
also, you can store info in hidden form fields. on the 2nd page, populate the hidden fields with the data from the first page. when that form is submitted, the hidden field values will get submitted as well. that's not ideal, tho. if you have validation in place between the first and second

Re: [PHP] Passing var from one page to itself

2008-12-21 Thread tedd
At 4:10 PM +1300 12/21/08, Aslan wrote: Hey there, I have a problem where I have a simple -script that I am wanting to pass back to itself three times 1) Symptoms - 2) Troubleshooting questions 3) Answer to problem -snip- I have it currently all on one page, but it isn't quite what I was

[PHP] Passing var from one page to itself

2008-12-20 Thread Aslan
Hey there, I have a problem where I have a simple -script that I am wanting to pass back to itself three times 1) Symptoms - 2) Troubleshooting questions 3) Answer to problem The page is passing the vars from the first page to the second, but the first pages vars are not passed to the