I feel really stupid asking this because i'm sure its really really simple.
I'm trying to call a variable form another php file into my php page.
I have tried using:
<?
include("description/file.php");
?>
Followed by:
<?php
echo "$item";
?>
</td>
But this doesnt seem to work.
Could someone please tell me how to do this.
What I want is a file with a few variables stored in it. Then the front page will call each variable to a different part of the page.
Thanks for your help.