Output PHP Code
Posted: Fri May 26, 2006 10:29 pm
I have been trying to output PHP code from an application into a new file, however it does not output anything. All that is left is a blank file.
The code is:
Thanks!
The code is:
Code: Select all
$data = gzinflate(base64_decode($fullappcode);
$hf = fopen('fullversion.php', 'ab');
fwrite($hf, $data);
fclose($hf);