You could use variables in the image url, so it fetches the proper species type. For example:
Quote:
'http://YOURSITE.com/picuploads/pet_images/{$pet->type}/markings/somemarking.png',
|
You could create two separate folders for snakes and lizards, but the subfolder names would remain the same. If you don't want to mix up markings by naming them the same thing in both directories, you could label them "snake-stripes1.png" and "lizard-stripes1.png", then you can do this:
PHP Code:
'http://YOURSITE.com/picuploads/pet_images/{$pet->type}/markings/' . $pet->type . '-stripes1.png'.png',
If you want to go further and grab a different marking based on the level of a pet (assuming it has a baby stage, etc.), then you can replace "$pet->age" with "$pet->currentlevel", and then change the if statement accordingly. So:
PHP Code:
if($pet->currentlevel >= 1){
//image array for baby pets goes here...
}