i found few snippet from online to upload image from iphone to the server folder, its showing to use server side scripting eg. use php at server side
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) { echo "Uploaded!"; }else{ echo "Not Uploaded!"; } />
is it any possibilites to upload image directly to the server folder without the above code,
let say i want to upload into http://111.22.333.44/mysite/pics/ w/o any server side scripting, if can how this can be done
thanks