Guest User

Untitled

a guest
Mar 23rd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. //assuming your file is named index.php
  3. //index.php without user_criteria shows site 2
  4. ///index.php?user_criteria=tdorg shows site 1
  5. $serverURL = (isset($_GET['user_criteria']) && $_GET['user_criteria'] == 'tdorg')?"http://trumpdonald.org/":"https://giphy.com/gifs/z48aJruaX0Jsk/embed";
  6. //if the user criteria is set in the URL, use that. Otherwise, default to url 1
  7. ?>
  8. <iframe src="<?php echo $serverURL; ?>" width="100%" height="100%" />
Add Comment
Please, Sign In to add comment