Ok, I tried it but it doesn't see to run when called. Here's what I have:
In an HTML file I have:
<?php
include("somecode.php");
?>
If I run the file "somecode.php" from my browser it works fine, but when I use the Include statement as above and go to the HTML file that has the PhP include statement, the code inside "somecode.php" doesn;t seem to run. What I want to do is have the php code inside "somecode.php" to run when I access it via the include statement. What else do I need to do?
Thanks,
Basil the Newbie