Technology Articles

The science of today is the technology of tomorrow. Browse Technology related articles.

Dot. NET Articles

Browse the Dot.NET technical articles.

Web Design & Development

Browse Web Design & Development Articles which includes Technologies of Drupal, Joomla, CodeIgnitor, JQUERY, CMS, etc.

Health Articles

Browse Health Tips & Articles

Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Wednesday, May 4, 2011

Handling Multiple Images Upload - PHP Mysql

First you need to create File Upload form,

Use the following html form,
<form method="post" action="" enctype="multipart/form-data">
Choose a file to upload : <input type="hidden" name="MAX_FILE_SIZE" value="100000"><input name="uploadedfile" type="file">
</form>