Greetings,
I created a php script to that looks like a directory to Apache. I want to be able to have it read directory locations typed into the location bar of a browser as part of a querystring.
For example:
http://someserver.com/myscript/SOMEVALUE
The script will then take "SOMEVALUE"
and assign it to $someVar then redirect the user to another script based on what SOMEVALUE is.
In apache I just did a simple alias:
Alias /myscript/ "D:/Program Files/Apache Group/Apache/htdocs/webCalendar/myscript.php"
Is there any way to do what I want using PHP and Apache? Is this more of an Apache question?
Thanks in advance,
--Desmond