Posted by Richard Heyes on 11/14/05 11:49
Ross wrote:
> Hello,
>
> I have been usng the file_get_contents function to insert a (repeating)
> part of my code
>
>
> $lines = file_get_contents('../shared/acessibility_box.htm');
>
> echo "$lines";
>
>
> In this file I have the a self submitting link
>
> <a href="<? $_SERVER['PHP_SELF']; ?>?text_size=small" class="size1">A</a>
>
>
> The problem I think is this code is inserted after the page headers have
> been set. And so the line just generates an error.
> When I roll over the link I get (or something similar)
>
>
> http://localhost/nhs/<? $_SERVER['PHP_SELF']; ?>?text_size=small
>
> I have tried most of the other similar functions (include, require) with no
> success.
Use require('../shared/acessibility_box.htm'); and change the link to this:
http://localhost/nhs/<?=$_SERVER['PHP_SELF']?>?text_size=small
Note the equals sign after the <?.
--
Richard Heyes
[Back to original message]
|