Jump to content

Recommended Posts

Hi,

 

When I first starting designing a site I used a simple function to get the script name and then using an IF statement I would decide if entire blocks of code would be run, eg

 

<? 
if ($scriptName == "thispage.php" || "thatpage.php"){
?>
<p> I only want this to show up on either thispage.php or thatpage.php </p>
<?
}
?>

This was all well and good, I also used it to isolate different stylesheets for different pages but somewhere along the past few weeks its stopped working and I didnt realise - now absolutely everything is loaded regardless of that code. I echoed the scriptname variable and that is reporting the correct page name.

The only change is a server upgrade to php5. Any ideas whats broken or what could get it working again?

Link to comment
https://forums.phpfreaks.com/topic/146876-solved-using-if-statements/
Share on other sites

Hi,

 

When I first starting designing a site I used a simple function to get the script name and then using an IF statement I would decide if entire blocks of code would be run, eg

 

<? 
if ($scriptName == "thispage.php" || "thatpage.php"){
?>
<p> I only want this to show up on either thispage.php or thatpage.php </p>
<?
}
?>

This was all well and good, I also used it to isolate different stylesheets for different pages but somewhere along the past few weeks its stopped working and I didnt realise - now absolutely everything is loaded regardless of that code. I echoed the scriptname variable and that is reporting the correct page name.

The only change is a server upgrade to php5. Any ideas whats broken or what could get it working again?

 

Try changing it to:

<?php
   if($scriptName == 'thispage.php' || $scriptName == 'thatpage.php')
   {
      //do stuff
   }
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.