Posts: 41
Name: Jabis Sevon
Location: Tampere, Finland
|
register_globals is set to off in your php.ini, as well as it should, for XSS attacks... instead of
if($action = "show") use
PHP Code:
if(isset($_GET['action']) && $_GET['action'] == "show") { ... your db-stuff ... }
read the docs and the migration info on www.php.net to get your scripts to work with minimal extra work.
|