|
-
September 10th, 2005, 02:37 PM
#1
Tool to see how fast php
Is there a tool to see how fast php page change into html ?
which one is faster between this code ?
Code 1 :
<?php
for ($TA=0;$TA < 500;$TA++) {
echo "<A href='TestPage.php?page={$TA}'>{$TA}</A>";
}
?>
or
Code 2 :
<?php
for($TA=0;$TA<500;$TA++){
?>
<A href="TestPage.php?page=<?php echo $TA;?>><?php echo $TA;?></A>
<?php
}
?>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|