Re: PHP Always Outputs [message #178625 is a reply to message #178624] |
Sat, 14 July 2012 08:54 |
Luuk
Messages: 329 Registered: September 2010
Karma:
|
Senior Member |
|
|
On 14-07-2012 06:21, Ryan wrote:
> I want a php script to run and simply output nothing. But even this script:
>
> <?php
> ?>
>
> will output this html
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML><HEAD>
> <META content="text/html; charset=windows-1252" http-equiv=Content-Type></HEAD>
> <BODY></BODY></HTML>
>
> Is there a setting somewhere in my php or apache config that needs to be turned off?
>
no, PHP will not output what you said.
The output you see is generated by apache.....
~/tmp> cat empty.php
<?php
?>
~/tmp> php -f empty.php
~/tmp>
|
|
|