Images
Posted: Tue Jan 11, 2011 8:47 pm
I want to set it up depending on what class they choice they get a different image as their avatar how do I do this?
Code: Select all
<img src="<?php
switch ($_SESSION['class']) {
case 'warrior':
echo "images/classpics/warrior.png"; //enter your url here
break;
case 'mage':
echo "images/classpics/mage.png";
break;
case 'rogue':
echo "images/classpics/rogue.png";
break;
default:
//of course throwing exceptions (aka errors) is optional, but if the class isn't what you think, something is very wrong
throw new Exception("Incorrect class data stored.");
break;
} ?>" alt="avatar image" />