Imagine 3 pages - (1) being a Search Query (GET) file number , (2) being the results of the file number - includes echoing all columns in the mysql table. This page has a "payment history" link which will leave us with our last page (3) payment history page. I have a link setup on page 2 to Payment History and after you click on the link, I would like it to pull up the filenumber from Page 2 to auto query the payment history from table 2. How can I carry the Variable "filenumber" to the next page so I can use the variable in a GET or a REQUEST format?
I need a variable passed from 1 page to another without using a GET form. If I pull up the filenumber on page 2 and then click a link to go to page 3, I would like to carry the file number variable to the next page and alos CLOSE the Variable (throw it away) after I have carried it to that page.
I want to be able to use the filenumber for a auto query (display payment history) and then throw it away or close it after I have done this. That way when you are back at Page 1 I can choose a different file number and view the case (page 2) and then click on payment history (page 3) and view payment history.
Great answer Little Bhishma !!!!! It worked! I had to modify it just a tiny bit by adding $row['filenumber']; but you gave me the answer I was looking for!
I need a variable passed from 1 page to another without using a GET form. If I pull up the filenumber on page 2 and then click a link to go to page 3, I would like to carry the file number variable to the next page and alos CLOSE the Variable (throw it away) after I have carried it to that page.
I want to be able to use the filenumber for a auto query (display payment history) and then throw it away or close it after I have done this. That way when you are back at Page 1 I can choose a different file number and view the case (page 2) and then click on payment history (page 3) and view payment history.
Great answer Little Bhishma !!!!! It worked! I had to modify it just a tiny bit by adding $row['filenumber']; but you gave me the answer I was looking for!