Is the - <input type='file' />- file selection control used in the BlackBerry browser?
I set up a simple HTML form for uploading a file - it works fine on my desktop browser, but the BlackBerry browser seems to ignore the file input and instead sends the file name as a message field.
This is what I tested on the Curve 8520. Is there something I am doing wrong?
Here's the base code:
<form method="post" enctype="multi-part/form-data" action="action.php" >
<input type='file' name='import' /> Select a file
<input type='submit' name='upload' >
</form>
source
share