?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/insert.php |
<?php ob_start(); include "include/connection.php"; $obj=new db(); if($_POST) { extract($_POST); //echo $kk; //exit; $imageName=$ptype."-".$_FILES['image']['name']; $source=$_FILES['image']['tmp_name']; move_uploaded_file($source, "product_images/".$imageName); $imagethum=$ptype."-".$_FILES['imagethum']['name']; $sourcethum=$_FILES['imagethum']['tmp_name']; move_uploaded_file($sourcethum, "produt_thum/".$imagethum); $details=stripslashes($details); $sql="insert into product (`productId`,`model`,`proName`, `details`, `proImage`,`proThum`, `proType`, `proUrl`, `date`,`type`) values ('','$model', '$name', '$details', '$imageName','$imagethum','$ptype','$pUrl', now(),'$kk')"; $obj->query($sql); header("location:addProducti.php?id=".$ptype."&st=success"); }