Search results

  1. J

    PHP Global Variables Problem

    Global vars is turned off on my account so that explains the problem. I figured out a work around. Essentially, in the one script I used $location = $_GET['foo'] and in the other script I put "script.php?foo=.'$location.'"; All is working well now. Thanks!
  2. J

    PHP Global Variables Problem

    In one of my scripts, I do the following: session_start(); $location = $_GET['location']; $radar = $location; $_SESSION['radar'] = $radar; $location comes in from a webform. Then when I use $radar in another script that is called, it doesn't work and I get the following error: Warning...
Top