03-01-2008, 05:39 PM
|
#1 (permalink)
|
|
The Addict
Join Date: Nov 2007
Posts: 265
Thanks: 2
|
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);
}
|
|
|
|