User:Laurence
Jump to navigation
Jump to search
<?php echo 'Hello World'; ?>
Name: Laurence Herbert
Nickname: {james}
Email: james3785@gmail.com
Steam ID: STEAM_0:0:3211787
<?php echo 'Profiles around the web'; ?>
HL2World: Profile
Marks Servers (NS Community): Profile
Nuclear Dawn (HL2 Mod): Profile
Ricochet Source (HL2 Mod): <Site is offline>
Steampowered.com: Profile
<?php echo 'Random Stuff'; ?>
Date Commands:
$today = date("F j, Y, g:i a");
$today = date("m.d.y");
$today = date("j, n, Y");
$today = date("Ymd");
$today = date('h-i-s');
$today = date("H:i:s");
Print IP Address:
$ip = $_SERVER["REMOTE_ADDR"];
echo $ip;
Browser Info:
$browsinfo = $_SERVER["HTTP_USER_AGENT"];
echo $browsinfo;
Make text uppercase:
$example = 'RICO;
$example = strtoupper($example);
echo $example;