I don't know if this is the proper place to ask this, but I'll ask it all the same. Here is my problem.
Basically, my .php files do not include files from jasvascript includes. For instance I have the following code:
Does Not Work:
<?php
do some php stuff
?>
<script language="JavaScript" SRC="includes/myscript.js"></script>
<?
do whatever
?>
Does Work:
<?php
do some php stuff
?>
<script language="JavaScript">
actual javacript that was inside the .js file
</script>
<?
do whatever
?>
So basically, If I just copy paste the .js file into my PHP file, it works fine, but if I set it to an include, it does not.
The pathing is correct, because If I view source and save the file as a .HTML file, it works fine on my local machine. Not sure why this is happening..