Page 2 of 2

Posted: Thu Sep 26, 2002 6:18 am
by twigletmac
Create a PHP file and just put

Code: Select all

<?php phpinfo(); ?>
in it and upload it to your webspace. Accessing that file will give you loads of information about the way your ISP has set-up PHP and also will tell you what version of PHP is running.

What do you get if you put:

Code: Select all

echo '<pre>';
print_r($_GET);
print_r($HTTP_GET_VARS);
echo '</pre>';
at the top of your title.php page?

Mac

Posted: Thu Sep 26, 2002 6:39 am
by lloydsmods
It works! $HTTP_GET_VARS worked!

I was trying to run the query through a function call to another php file and it wouldn't work. When I moved the query to the title.php page it worked like a charm.

Thanks for the help!