Advertisement
Guest User

Untitled

a guest
Dec 9th, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3.     if(is_page('About'))
  4.     {
  5.         <img src="image1.jpg">
  6.     }
  7.     elseif(is_page('Music'))
  8.     {
  9.         <img src="image2.jpg">
  10.     }
  11.     elseif(is_page('Gigs'))
  12.     {
  13.         <img src="image3.jpg">
  14.     }
  15.     elseif(is_page('Contact'))
  16.     {
  17.         <img src="image4.jpg">
  18.     }
  19.     else
  20.     {
  21.         <img src="image5.jpg">
  22.     }
  23.  
  24.     ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement