View Single Post
Old 03-11-2008, 01:45 PM  
wizzart
scriptmaster
 
wizzart's Avatar
 
Industry Role:
Join Date: May 2006
Location: Serbia
Posts: 5,237
PHP Code:
<?
$a="Some text";
$i=0;
while ($i<10000){
echo "$a";
$i++;
}
?>
PHP Code:
<?
$a="Some text";
$b="Second Text";
$i=0;
while ($i<10000){
echo "$a";
echo "$b";
$i++;
}
?>
wizzart is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote