What is with this error message?????? First part validates, second part
fails...
getimagesize (filename...) failed to open stream: No such file or directory
} elseif ($photo) {
$ext = strtolower(subs tr($photo, -3));
if ($ext == "peg") { $ext = "jpg"; }
if ($ext != "gif" && $ext != "jpg" && $ext != "jpeg" && $ext != "bmp" )
{
$focus = "photo";
$msg2 = "Please provide a valid gif, jpeg, or bmp photo or do not
attach one.";
} else {
$size = getimagesize($p hoto);
if ($size > 25000) {
$msg2 = "Photo must be smaller than 25k.";
}}}
fails...
getimagesize (filename...) failed to open stream: No such file or directory
} elseif ($photo) {
$ext = strtolower(subs tr($photo, -3));
if ($ext == "peg") { $ext = "jpg"; }
if ($ext != "gif" && $ext != "jpg" && $ext != "jpeg" && $ext != "bmp" )
{
$focus = "photo";
$msg2 = "Please provide a valid gif, jpeg, or bmp photo or do not
attach one.";
} else {
$size = getimagesize($p hoto);
if ($size > 25000) {
$msg2 = "Photo must be smaller than 25k.";
}}}
Comment