Re: Site Performance - Tips & Tricks Hi folks,
The following will be used to increase the performance of the site.
we usually concat a string with the following:-
<?php
echo '<option>'.$variable.'</option>';
?>
But a better way is to use commas to output the string rather than the previous used. Because PHP only has to output it instead of using concatenation.
<?php
echo '<option>',$variable,'</option>';
?>
__________________
J.Vijayanand |