Wise Include no antigo PHP

Só me lembrando de não fazer uma coisa tão tola no php como:

<?php
// loops -- statement
include
"thecode.php";
//calling function in thecode.php
// end loops
?>

Melhor ser :

<?php

include
"thecode.php";
// loops -- statement
// calling function in thecode.php
// end loops
?>