01-18-2008, 07:29 PM
|
#6 (permalink)
|
|
The Prestige
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
|
that code snippet can be made shorter i believe:
PHP Code:
ob_start(); require $template_file; echo ob_get_clean(); //(or return)
ob_get_clean() executes both ob_get_contents() and ob_end_clean() automatically
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
|
|
|
|