Posted: Thu Sep 26, 2002 6:18 am
Create a PHP file and just put
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:
at the top of your title.php page?
Mac
Code: Select all
<?php phpinfo(); ?>What do you get if you put:
Code: Select all
echo '<pre>';
print_r($_GET);
print_r($HTTP_GET_VARS);
echo '</pre>';Mac