View Single Post
08-10-2005, 08:50 AM
#14
derek lapp is offline derek lapp
Status: design rockstar
Join date: Jan 2005
Location: guelph, ontario
Expertise:
Software:
 
Posts: 2,246
iTrader: 0 / 0%
 

derek lapp is on a distinguished road

  Old

Code:
<?php

function _birthdayParty($drink, $time) {
	$iAmount = 10;
	$sGuests = "my friends and i";
	$sAction = "will consume";
	$sReturn = $iAmount . " of " . $sGuests $sAction . " a " . $drink . "in " . $time;
	return $sReturn
}

for($iAge=20; $iAge<40; $j++){
	$type = "Jack Daniels";
	$amont = "texas mickey";
	$drink = $amount . " of " . $type;
	$time = "45 minutes";
	_birthdayParty($drink, $time);
}

?>
i think i consturcted it right, it's 10 to 5 in the morning.