I've narrowed down working code to this, but does it really do the job?
Does this really go faster?

header("Content-type: text/plain");
...
while ($personne = mysql_fetch_object($news))
 {
ob_start();
$output = "";
$output .= "R#:".$personne->id."¶\n";
if($personne->TNum != ""){$output .= "T#:".$personne->TNum."¶\n";}
print_r ($output);
$output = ob_get_contents();
ob_end_clean();
echo $output;
 }


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

Reply via email to