I'm stuck on something that I know is easy.
I have a javascript script that initializes a variable, then calls the variable.
For ex:
var url = "/gsc2/gcc_display.php?name=<? $ASSIGNEE?;>";
var nocacheurl = url+"&t="+timestamp;
The above works great.
What I am trying to do is pass a variable for the directory name also:
var url = "/<?php $DIR;?>/gcc_display.php?name=<? $ASSIGNEE?;>";
var nocacheurl = url+"&t="+timestamp;
This is what doesn't work and I typically get a
"The requested URL /gsc2/< was not found on this server."
Ideas?