BTW that line should read "if ($dest =='') " not "if ($dest = '')"
You need 2 equals signs to test for equality, using one you are
setting $dest to an empty string. It's a miracle it ever worked ;-)
Cheers - Neil
if ($dest = '') {
if (move_uploaded_file($so
So did you intend for this to happen :
Set $dest="". Check source supplied. Set $dest=$uploadpath.$photo_name;
Check if $dest="". If $dest="" (which it cant be if you supplied an image),
then move the uploaded file (it will never run). Else, echo couldn't store
image.
You see the problem, yes ?