? GR0V Shell

GR0V shell

Linux node1.dnscloudserver.in 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64

Path : /home/enviro777/public_html/admin/
File Upload :
Current File : /home/enviro777/public_html/admin/editProducti.php

<?php include "include/header.php";
@include("fckeditor/fckeditor.php");

if($_POST)
{
extract($_POST);
$details=stripslashes($details);
//echo $details;
//exit;
//echo "update product set `model`='$model',`proName`='$name', `details`='$details' where `productId`='".$_GET['eid']."'";
//exit;
$obj->query("update product set `model`='$model',`proName`='$name', `details`='$details' where `productId`='".$_GET['eid']."'");
if($_FILES['image1']['name'])
{
$imageName=$_GET['id']."-".$_FILES['image1']['name'];
$source=$_FILES['image1']['tmp_name'];
 move_uploaded_file($source, "product_images/".$imageName);
 $obj->query("update product set `proImage`='$imageName' where `productId`='".$_GET['eid']."'");

}
if($_FILES['imagethum']['name'])
{
$imageName=$_GET['id']."-".$_FILES['imagethum']['name'];
$source=$_FILES['imagethum']['tmp_name'];
move_uploaded_file($source, "produt_thum/".$imageName);
$obj->query("update product set `proThum`='$imageName' where `productId`='".$_GET['eid']."'");
}
}
if($_GET['id'])
{ 
$res=$obj->query("select * from category where `catId`='".$_GET['id']."'");
$cat=$obj->fetch_query($res);
$results=$obj->query("select * from product where `productId`='".$_GET['eid']."'");
$rows=$obj->fetch_query($results);
}
?>
   <!--main page-->

   
   
			 <table cellpadding="5" cellspacing="0" border="0"  class="normaltext" align="center" width="80%">
			   <tr bgcolor="#ccc" height="30"><td align="center" colspan="2"><strong>Edit <?=$cat->catName?> Product</strong></td></tr>
			   <tr height="40"><td colspan="2" id="error">&nbsp;<?=@$msg?></td></tr>
			   <form name="product" action="" method="post" onSubmit="return validproduct()" enctype="multipart/form-data">
			   <tr bgcolor="#EEEEEE"><td class="textboxcap">Model No</td>
			     <td><input name="model"  type="text" class="inputboxp" value="<?=$rows->model?>"></td>
			   </tr>
               <tr bgcolor="#EEEEEE"><td class="textboxcap">Name Of Product</td>
			     <td><input name="name"  type="text" class="inputboxp" value="<?=$rows->proName?>"></td>
			   </tr>
			 

			   <tr bgcolor="#EEEEEE"><td class="textboxcap">Product Details</td><td><?php // =$rows->proDetails?>
                <?php $oFCKeditor = new FCKeditor('details') ;
			  $oFCKeditor->BasePath = 'fckeditor/' ;
			  $oFCKeditor->Height	='350px' ;
			   $oFCKeditor->Width	='600px' ;
			  $oFCKeditor->Value =  stripslashes($rows->details);
			  $oFCKeditor->Create() ;	?>		 
               
               </td></tr>
			 

			   <tr bgcolor="#EEEEEE"><td class="textboxcap">Upload Image</td><td><input name="image1" type="file" class="inputbox" value=""><br /><?=$rows->proImage ?></td></tr>
			 
			 
               <tr bgcolor="#EEEEEE"><td class="textboxcap">Upload Thumbnail</td><td><input name="imagethum" type="file" class="inputbox" value=""><br /><?=$rows->proThum?></td></tr>
               <tr bgcolor="#EEEEEE"><td class="textboxcap">Product Url</td>
			     <td><?=$rows->proUrl?></td>
			   </tr>
			 
			 
               <tr><td colspan="2" align="center">
			   <input type="hidden" value="<?=$cat->catId?>" name="ptype">
			   <input name="submit"  type="submit"  class="submitbox" value="Submit"></td></tr>
			   </form>
			   </table>
 <!--end main page-->
	  <?php include "include/footer.php";?>

T1KUS90T
  root-grov@65.21.25.53:~$