I have a .php form which is processed by another .php script. This works fine.
The problem that I have is that after processing form 1 I then want to process form 2 but pass variables across from form 1 ie
form_2.php?var=$row["id"]
If I use "include" then I get an error (there is no error if I do not have the variable!)
Please help