12-21-2009, 02:55 PM
You should also get into the habit of tabbing your code.
That would mean adding a tab to every line that appears inside certain braces.
i.e.
That would mean adding a tab to every line that appears inside certain braces.
i.e.
Code:
<?php
class my_tabs {
function hey_look_im_tabbed() {
echo "two tabs for two braces. ;)";
}
} ?>