Biranchi
Biranchi

Reputation: 16327

image upload in html page

I am using the following code to upload an image to a web server

<form name="uploadFile" action="upload.php" method="post" enctype="multipart/form-data" onSubmit="return validate();">

<input type="hidden" name="choice" value="upload">
<table align="center">
<tr>
    <td><span style="color:red;font-weight:bold">Upload files</span></td><td><input type="file" id="ufile" name="ufile" onKeyPress="return false;" style="BACKGROUND-color:Thistle">(* jpg,gif,png)</td>
</tr>
<tr>
    <td colspan="2" align="center"><input type="submit" name="submit" value="Upload" style="BACKGROUND-color:Thistle"></td>
</tr>

</table>
</form>

Its working fine in the browser?

But the same thing is not working in the iphone safari browser ?

Upvotes: 1

Views: 3235

Answers (2)

worksykes
worksykes

Reputation: 56

http://picupapp.com/ is an app that offers code you can add to your website that will allow their iphone app to pseudo upload images to your webserver.

Upvotes: 1

arno
arno

Reputation: 357

iPhone's Safari does not support file upload.

Upvotes: 5

Related Questions