This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Friday, 7 June 2013

how to upload many images at once in php

This tutorial tell you how to upload many images at once  in php.  Just copy the code bellow and save it as "image.php" then open it in your server e.g. localhost. <?php if($_SERVER["REQUEST_METHOD"] == "POST")  {  $uploaded_images = count($_FILES['file']['name']);  for ($i = 0; $i < $uploaded_images; $i++)  {  if($_FILES["file"]["error"][$i]...

how to upload and resize image for thumbnail in php

            This tutorial tell you how to upload and resize image for thumbnail in php. Just copy the code bellow and save it as "resize_image.php" then open it in your server e.g. localhost. <?php if($_SERVER["REQUEST_METHOD"] == "POST")  {  // By using the global PHP $_FILES...

Tuesday, 4 June 2013

how to store data into database easily and reset the form after successful submission

            Code below will guide you how to store data into database easily. Save this as "save.php" and open it in your host e.g. localhost. <?php  session_start();  // Assing value about your server to these variables for database connection  $hostname_connect= "localhost";  $database_connect=...