I had a webhost were everything ran fine, but the site kept going down. So, I switched webhosts to someone more reliable. Now, since I switched, all of my forms are not carrying variables from one page to the next. I learned that I can fix this by going into the code and adding this line for every field:
// Form sends variable "$id" from one page to the next
// On the recieving page, I add the following...
if(isset($_GET['id']))
{ $id = $_GET['id']; }
If there was only one form, and only a few fields, this wouldn't be an issue. However, the site has over 50 forms, and tons of variables, and it would take me FOREVER to go into the code and redo everything. Can someone tell me how to change the PHP setting to allow these variables without this line?
Please use layman's terms, as I need to explain this to my webhost (and I need to understand this). Thanks.