|
Posted by ZeldorBlat on 03/23/06 17:39
universalbitmapper wrote:
> Hi,
> I'm trying a simple form.html that call a .html script that begins
> with:
>
> <?php
> header("This is a test");
> ?>
>
> When I click on the link, I get blank page.
>
> I tried every combination of .html and .php as extensions, none works.
>
> I checked the >Tools>Config>advanced menus in IE6, I can't find where
> could be some filter to prevent the headers from displaying.
>
> *************************************************************
> I say without reservation, we ain't getting no hi-higher
> It's a girl Mrs Walker it's a girl
> *************************************************************
What are you trying to do? Just make it output "This is a test" ?
If you want the file to be parsed as php, give it a .php extension. If
you want the page to display "This is a test" then it should just be
this:
<?php
echo "This is a test.";
?>
[Back to original message]
|