View Single Post
Old 06-05-2008, 06:55 AM   #27 (permalink)
SpYkE112
The Contributor
 
Join Date: May 2008
Location: Denmark
Posts: 70
Thanks: 3
SpYkE112 is on a distinguished road
Default

Now that you know it works then i would recommend you to ident your code, that means:
PHP Code:
<?php
if ($this == true) {
    echo(
'This functions indented!');
} else {
    echo(
'This one to!');
    if (
$that == false) {
        echo(
'Another level of indenting');
    } else {
        echo(
'And another');
    }
}
?>
SpYkE112 is offline  
Reply With Quote