[thelist] php sessions playing up

Alex Farran alex at alexfarran.com
Tue Jan 11 10:21:12 CST 2005


You have register_globals turned off.  This is a good thing, but your
code is written as if it is turned on.  Specifically, $urlkeyword will
always be null.  Use this line to set it to the value in the query
string:

$urlkeyword = $_GET["urlkeyword"];

Now try again.
-- 

    __o    Alex Farran - Open source software specialist 
  _`\<,_   PHP | MySQL | E-Commerce | Content Management
 (_)/ (_)  site: www.alexfarran.com  blog: alexfarran.blogspot.com
           phone:01273 474065  mobile:07790 389330


More information about the thelist mailing list