Skip to content

Instantly share code, notes, and snippets.

@ilg
Created March 2, 2011 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilg/851359 to your computer and use it in GitHub Desktop.
Save ilg/851359 to your computer and use it in GitHub Desktop.
change image based on request variable
<img src="<?php
switch ($_REQUEST['topic']) {
case 'topic1':
echo('/images/img-topic1.jpg');
break;
case 'topic2':
echo('/images/img-topic2.jpg');
break;
case 'topic3':
echo('/images/img-topic3.jpg');
break;
case 'topic4':
echo('/images/img-topic4.jpg');
break;
default:
echo('/images/default.jpg');
break;
}
?>">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment