User:Laurence: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
'''Nickname''': {james}<br/> | '''Nickname''': {james}<br/> | ||
'''Email''': james3785@gmail.com<br/> | '''Email''': james3785@gmail.com<br/> | ||
'''Steam ID''': STEAM_0:0:3211787<br/> | '''Steam ID''': STEAM_0:0:3211787<br/> | ||
==<?php echo 'Profiles around the web'; ?>== | ==<?php echo 'Profiles around the web'; ?>== | ||
Line 20: | Line 12: | ||
'''Ricochet Source (HL2 Mod)''': <Site is offline><br/> | '''Ricochet Source (HL2 Mod)''': <Site is offline><br/> | ||
'''Steampowered.com''': [http://forums.steampowered.com/forums/member.php?u=321286 Profile]<br/> | '''Steampowered.com''': [http://forums.steampowered.com/forums/member.php?u=321286 Profile]<br/> | ||
==<?php echo 'Random Stuff'; ?>== | ==<?php echo 'Random Stuff'; ?>== |
Revision as of 11:17, 24 June 2007
<?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;