[PHP] Just need a link ;)

2002-12-27 Thread Brian J. Celenza
Hello!

I'm looking for a link that contains a list/description of all the built in
$PHP_ variables (the ones that show browser type, etc.). Can't seem to
locate them, if the page exists.

Thanks!

--
---
Brian J. Celenza
[EMAIL PROTECTED]
ICQ: 110942424
AIM: BJCKnight



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Just need a link ;)

2002-12-27 Thread Jason Sheets
You might look at the PHP manual, also create a page that executes the
phpinfo() function, this will a lot of the variables you may be looking
for.

Jason

On Fri, 2002-12-27 at 10:27, Brian J. Celenza wrote:
 Hello!
 
 I'm looking for a link that contains a list/description of all the built in
 $PHP_ variables (the ones that show browser type, etc.). Can't seem to
 locate them, if the page exists.
 
 Thanks!
 
 --
 ---
 Brian J. Celenza
 [EMAIL PROTECTED]
 ICQ: 110942424
 AIM: BJCKnight
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Just need a link ;)

2002-12-27 Thread Michael J. Pawlowsky

Just make a php file with:


?php

session_start();

echo pre\n;

echo \n\n_SERVER\n;
print_r ($_SERVER);

echo \n\n_ENV\n;
print_r ($_ENV);

echo \n\n_COOKIE\n;
print_r ($_COOKIE);

echo \n\n_GET\n;
print_r ($_GET);

echo \n\n_POST\n;
print_r ($_POST);

echo \n\n_FILES\n;
print_r ($_FILES);

echo \n\n_REQUEST\n;
print_r ($_REQUEST);

echo \n\n_SESSION\n;
print_r ($_SESSION);


// Pre 4.0.1 PHP
//  echo \n\nHTTP_SESSION_VARS\n;
//  print_r ($HTTP_SESSION_VARS);

echo \n\nphp_errormsg\n;
echo $php_errormsg\n;

echo /pre;

phpinfo();

?



*** REPLY SEPARATOR  ***

On 27/12/2002 at 12:27 PM Brian J. Celenza wrote:

Hello!

I'm looking for a link that contains a list/description of all the built in
$PHP_ variables (the ones that show browser type, etc.). Can't seem to
locate them, if the page exists.

Thanks!

--
---
Brian J. Celenza
[EMAIL PROTECTED]
ICQ: 110942424
AIM: BJCKnight



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php