View Single Post
Old 03-01-2008, 08:13 PM   #2 (permalink)
Alan @ CIT
Member of the Month
The Frequenter
Member of the Month Top Contributor 
 
Alan @ CIT's Avatar
 
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
Alan @ CIT is on a distinguished road
Default

Can't beat good ol' streams

PHP Code:
function newecho($text)
{
    
$output fopen('php://output''w');
    
fputs($output$text);

Alan
Send a message via MSN to Alan @ CIT
Alan @ CIT is offline  
Reply With Quote