suess0r Posted January 5, 2007 Share Posted January 5, 2007 How do i check to see if an image exists and if so print the image, if not print a default image? Link to comment https://forums.phpfreaks.com/topic/33030-default-image/ Share on other sites More sharing options...
papaface Posted January 5, 2007 Share Posted January 5, 2007 If you could explain where you are getting the image from (both default and the one you want to display) it will easier to help. Link to comment https://forums.phpfreaks.com/topic/33030-default-image/#findComment-153850 Share on other sites More sharing options...
Psycho Posted January 5, 2007 Share Posted January 5, 2007 Here's some sample code. It is written in long hand for better understanding, but it could be written much simpler depending on your needs.[code]<?php$defaultImage = "default.jpg";$myImage = "somenewimage.jpg";if (file_exists($myImage)) { $img = $myImage;} else { $img = $defaultImage;}echo "<img src=\"".$img."\">";?>[/code] Link to comment https://forums.phpfreaks.com/topic/33030-default-image/#findComment-153851 Share on other sites More sharing options...
suess0r Posted January 6, 2007 Author Share Posted January 6, 2007 That didn't work that well.. here's what i'm working with.[quote]<?php echo '<b><p align="center"><img src="/images/clubs/logos/'.$id.'.jpg" align="center" width="300" height="128"></p>';?> [/quote]right now.. here's my concept[quote]<?php $defaultImage = "/images/clubs/logo/default.jpg"; $myImage = "/images/clubs/logos/'.$id.'.jpg"; if (file_exists($myImage)) { $img = $myImage; } else { $img = $defaultImage; } echo "<img src=\"".$img."\">"; echo '<b><p align="center"><img src="'.$img.'" align="center" width="300" height="128"></p>';?>[/quote] Link to comment https://forums.phpfreaks.com/topic/33030-default-image/#findComment-153968 Share on other sites More sharing options...
papaface Posted January 6, 2007 Share Posted January 6, 2007 What problem are you having now? Link to comment https://forums.phpfreaks.com/topic/33030-default-image/#findComment-153969 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.