Hi,
I put this in the header.
<?php $test = 'test'; ?>
And I put this in the sidebar,
<?php echo $test; ?>
But nothing happens. Why? Do I need to define a variable in every file?
Hi,
I put this in the header.
<?php $test = 'test'; ?>
And I put this in the sidebar,
<?php echo $test; ?>
But nothing happens. Why? Do I need to define a variable in every file?
In header:
<?php global $test; $test = 'test'; ?>
In sidebar:
<?php global $test; echo $test; ?>
Thank you so much, Kafkaesqui. I appreciate it.
This topic has been closed to new replies.