User:Laurence: Difference between revisions

From Valve Developer Community
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/>
'''Experienced in''': HTML,PHP,CSS,Javascript.<br/>
'''Learning''': Perl,PASCAL,C .<br/>
'''System''': AMD 64 3500+, 1.5GB RAM (DDR), 6600GT 128MB, 300GB HD.<br/>
'''Operating System''': Windows Vista Build 6000<br/>
'''Games I own''': Counter-Strike, Counter-Strike: Source, Condition Zero, Day of Defeat, Day of Defeat: Source, Deathmatch Classic, Garry's Mod (10), Half Life, Half Life: Source, Half Life: Blueshift, Half Life 2, Half Life 2: Deathmatch, Half Life 2: Episode 1, Half Life 2: Lost Coast, Half Life Deathmatch: Source, Opposing Force, Ricochet, Team Fortress Classic.<br/>
'''Steam ID''': STEAM_0:0:3211787<br/>
'''Steam ID''': STEAM_0:0:3211787<br/>
'''Favorite Games''': Ricochet, Deathmatch Classic, Team Fortress Classic, Half Life. (I love the old school games).<br/>
'''Favorite Films''': Terminator 1/2 (Hated 3), Matrix 1, Children of men, Borat (Never laughted so hard in a cinema...ever).<br/>
'''Current Projects''': Ricochet Source<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 'Domains I own'; ?>==
[http://www.ricochet-source.com Ricochet Source.com] (My Mod)<br/>
[http://www.hlwarzone.com Half Life Warzone.com]<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;