Quote:
Originally Posted by kh99
You would need quotes around your string, and since the string contains quotes you'd need to escape them (and to make matters more complicated, the string already contains escaped single quotes). But you could try using "heredoc" syntax: http://php.net/manual/en/language.types.string.php
Like this:
Code:
$newcookie = <<<EOD<script src="http://www.geoplugin.net/javascript.gp" type="text/javascript"></script>
// rest of html here
EOD;
$template_hook[forumhome_above_forums] .= $newcookie ;
The "EOD;" that ends the string needs to start in the first column.
|
i see what you mean

makes it more complicated due to the escape characters in need to work on, thank you for the info