Posts

Showing posts from October, 2018

Multiple Images Uploads Step by Step

Lets see with example      <input type="file" name="image[]" id="form-field-2" placeholder="Select News Image For Uploading" class="col-xs-10 col-sm-5" required multiple="multiple" />   <input type="file" name="image[]" id="form-field-2" placeholder="Select News Image For Uploading" class="col-xs-10 col-sm-5" required multiple="multiple" />   <?php   include "connection.php";   if (isset($_POST['submit'])) {     extract($_POST);     $i = 0;     $total = count($_FILES['image']['name']);     for ($i = 0; $i < $total; $i++) {       $tmpFilePath = $_FILES['image']['tmp_name'][$i];       if ($tmpFilePath != "") {         $img = md5(time());         $newFilePath = "" . $img . $_FILES['image']['name'][$i];         if (move_uploaded_file($tmpFilePath, "../event/...