Hello guys, I have a page that has a layout that includes the content within it.
I am trying to echo a field on the page with the layout that the value of the field is found on the page that is included.
So I have this on the very top of the page
<?php echo $field;>
Now at the bottom of the page I define what field is.
<?php $field=bob;?>
For some reason the script is not echoing it. I think its because of the order that i have it setup, having the echo on the top and the define at the bottom.
How can i get this to work?