Log in

View Full Version : How can I tell where the script is being called from?


ablaye
10-25-2007, 10:26 PM
Hello,

Here is what I want to do. I want to have a variable that tells me whether the page that is loaded is from the root directory (i.e. www.domain.com/xyz.php) or whether it is being called from the blog directory (i.e. www.domain.com/blog/xyz.php).
Based on what pages are getting loaded, i want to be able to change things in the common header.
How do I do this?

Thanks

Brad
10-25-2007, 11:18 PM
Define a constant in each script, something like;

define('SCRIPT', 'xyz');

Then later on in your script you can do something like this;


if (SCRIPT == 'xyz')
{
// do something here that only happens on xyz.php
}

Marco van Herwaarden
10-26-2007, 06:48 AM
Check the constant VB_AREA.