Okay,
Here is my problem. I have javascript between <head></head>.
In this javascript it specifies what page i want to open (its chromeless windows). The page I want to open changes per user information, so my link looks like this
"memberinfo.php?memberID=<?php echo $rows[0]; ?>"
So thats in the javascript, which is in header.php.
So the page its opening says its not a valid resource, because its not recognizing the php through the javascript. What should I do, here some code snippet:
<script>
var myChromeless = new ChromelessWindow();
myChromeless.URL = "memberinfo.php?memberID=<?php echo $rows[0]; ?>";
...
</script>
Thats in my include file, header.php, which comes before each page. then my "roster.php" has all the users, and each has a memberID, and when you click on the profile link it does the duty, you get the idea. What should i do?!?!
HELP MEH THANK YOU!