Hi
I am new to PHP and have been teaching myself from tutorials off the internet. Having got a decent idea of what is going on, I was wondering if anyone knew the location of a set of sensible set of PHP coding standards.
Also, a simple efficiency question, if I have a large csv being read in to an array which I am then displaying in a table, is there any significant efficiency differences between:
<?
print "<td>";
print $data[13] . "\n";
print "</td>";
?>
and:
<td>
<?=$data[13]?>
</td>
Thanks in advance for any help.
Chris
I am new to PHP and have been teaching myself from tutorials off the internet. Having got a decent idea of what is going on, I was wondering if anyone knew the location of a set of sensible set of PHP coding standards.
Also, a simple efficiency question, if I have a large csv being read in to an array which I am then displaying in a table, is there any significant efficiency differences between:
<?
print "<td>";
print $data[13] . "\n";
print "</td>";
?>
and:
<td>
<?=$data[13]?>
</td>
Thanks in advance for any help.
Chris