View Single Post
Old 03-01-2008, 06:39 PM   #1 (permalink)
TlcAndres
The Addict
 
Join Date: Nov 2007
Posts: 264
Thanks: 2
TlcAndres is on a distinguished road
Default Outputting data without echo/print

Well I'd like to see how inventive you all are in outputting data to the screen without using echo or print or C hooks (Alan)


Here goes my try

PHP Code:

function newecho($text)
{
     
$path $_SERVER['DOCUMENT_ROOT'] . '/file.html';
     
file_put_contents($path,$text);
     include_once(
$path);

TlcAndres is offline  
Reply With Quote