Log in

View Full Version : If This Script = ?


Reeve of shinra
07-25-2005, 06:45 PM
I want to extend a home brewed hack that I currently use on posts to journals and the vba gallery.

Instead of copying the file and changing a few of the variables, I thought I would try something different and I remember seeing something like "IF THIS SCRIPT = xyz.php" in a few hacks and thought i would try that approach.

What would be a good example of this in use?

sabret00the
08-02-2005, 10:41 AM
this script must be defined in the files first so bare that in mind
define('THIS_SCRIPT', "whatever");

then an example of implementation would be
if(THIS SCRIPT == "relationship")
{
// show dating site announcement
}


bad example but you get it.

Dean C
08-03-2005, 11:17 AM
if(THIS_SCRIPT == 'relationship')
{
// show dating site announcement
}


You missed out an underscore sabe :)

sabret00the
08-03-2005, 01:53 PM
oops :o