Lets say we have two different files or web pages:
PHP Code:<?php
$q=3;
if ($q==3) echo "$q";
?>could there be a significant difference in loading speeds?PHP Code:<?php
$q=3
if ($q==2) {1-3 MB worth of instructions that won't be executed, because the $q =3 not 2;}
if ($q==3) echo "$q";
?>



Reply With Quote

Bookmarks