Is it possible to use PHP includes within the header template?
I want to use this code to generate a random quote:
But it's not working for me. Is there a problem with putting includes within a template? Is there a way round it?
Chris
I want to use this code to generate a random quote:
PHP Code:
<?
include('randomquote.php');
?>
Chris
Comment