Thread: Forum Tags
View Single Post
  #7  
Old 01-26-2007, 02:44 PM
Twinny Twinny is offline
My empire of dirt
Twinny's Avatar
Join Date: Mar 2006
Location: Australia
Posts: 2,422
Twinny is just really niceTwinny is just really nice
Send a message via AIM to Twinny
It's syntax highlighting. Makes it easier to see what is going on. Indents are apart of stylising: makes it easier to read. I could do

PHP Code:
function onCreated() { statement1statement2statement3; } 
But I prefer to do

PHP Code:
function onCreated()
{
  
this.test "string!";
  if (
this.test == "string!")
  {
    echo(
"YAY!");
  }

Just nicer .
Reply With Quote