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 PHP. Show all posts
Showing posts with label PHP. 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>

Sunday, October 10, 2010

Php Mysqli extension

The MySql Improved Extension, a.k.a mysqli is faster more improved version of existing mysql. It is available in PHP 5 or later versions. The source code of mysqli is available at ext/mysqli. For further information click here.
A simple example how to connect and insert temp data to database 'mydb' and table 'mytable'.
Lets add DbConnector.php first,