At 20:19 07.03.2003, Gary said:
--------------------[snip]--------------------
>Thanks for your response James!
>but still I must be doing something wrong the "1" is a persistent little
>bugger. Have you any tips on how to rewrite:
>
><?php
>echo @ require_once("topten.php");
> ?>
>using the ob_methods?
--------------------[snip]-------------------- 

Rewrite this to just
    require_once('topten.php');
No need to echo here.

Using output buffering the 1 would still appear, some microseconds later...


-- 
   >O     Ernest E. Vogelsinger
   (\)    ICQ #13394035
    ^     http://www.vogelsinger.at/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to