Monks,
I need to be able to check if a file exists on the server. The filename is in the database, but may not be on the server. I know how to check the database for the file, but I'm unsure how to verify that the filename is on the server.
$pointer2 = $sth2->fetchrow_hashref;
$image = $pointer2->{'image'};
if ($image) {
How do I verify it exists?
}