Jump to content

Recommended Posts

I'm trying to run the following code in my webpage.  The problem is with the html link.  What I want to happen is if the "REMOTE_USER" is equal to the values I specify, I want a url and image to appear.  Otherwise, I want nothing to appear.  Here is what I have so far:

 

 

<?php

 

$number_three = $_SERVER['REMOTE_USER'];

 

if ( $number_three == "dsmith" or "jdoe") {

<a href="http://www.domain.org/members/admin/"><img src="http://www.domain.org/images/admin.jpg" alt="Administration"  vspace=2 border=0></a>;

} else {

echo " ";

}

 

?>

 

 

Link to comment
https://forums.phpfreaks.com/topic/154666-solved-if-then-else-with-web-link/
Share on other sites

Use an array then the in_array function.

 

<?php
$number_three = $_SERVER['REMOTE_USER'];

$validNames = array("dsmith", "jdoe");

if (in_array($number_three, $validNames)) {
    echo '<a href="http://www.domain.org/members/admin/"><img src="http://www.domain.org/images/admin.jpg" alt="Administration"  vspace=2 border=0></a>';
} 
?>

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.