Hi
Just uploaded some .php scripts to a server and it's displaying the code instead of running. Happens even with a simple script like this: <? include("quotes1.inc"); ?>
Does the <? bit need changing?
Many thanks,
Mark
Check with the site admin , is PHP installed on the system
if it is installed, you may need to change the suffix on your file to php3 instead of just php
and the manual shows there are other ways of escaping html and entering php code mode; <pre>
<? ?> <?php ?> <script language="php"> </script>
</pre>
http://www.php.net/manual/en/language.basic-syntax.php
Jim