Wrong Image
Moderator: General Moderators
Wrong Image
If there is an error with an image like it doesn't exist, how can you change it to a not available image?
Re: Wrong Image
file_exists()
Code: Select all
if (file_exists(whatever)) {
display image
} else {
display default image
}