? 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/addCategory2.php

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



if($_POST)
{
extract($_POST);


$sql="select * from category where catName='$name'";
$num=$obj->count_row($sql);
if($num==0)
{
$details=stripslashes($details);

$sql="insert into category (`catId`, `catName`, `type`,`details`,`catUrl`) values ('','$name', '$a1','$details','".php_slug($Url)."')";
$obj->query($sql);
$msg="Product Category has been Successfully  Created";
}
else
$msg="This Product Category Already  exist";

}
?>

<?php
function php_slug($string)
{
	$slug = preg_replace('/[^a-z0-9-]+/', '-', strtolower($string));
	return $slug;
} 

?>
   <!--main page-->
			 <table cellpadding="5" cellspacing="0" border="0"  class="normaltext" align="center">
			   <tr bgcolor="#ccc" height="30"><td align="center" colspan="2"><strong>Add Product Category </strong></td></tr>
             <tr height="40"><td colspan="2" id="error">&nbsp;<?=$msg?></td></tr>
			   <form name="cat" action="" method="post" onSubmit="return valid()">
			   <tr bgcolor="#EEEEEE"><td class="textboxcap">Name Of Category</td><td><input name="name" class="inputbox" value=""></td></tr>
               <tr bgcolor="#EEEEEE"><td class="textboxcap">Enter Url without space</td><td><input name="Url" class="inputbox" value=""></td></tr>
               <tr bgcolor="#EEEEEE">
            <td class="textboxcap">Description</td>
            <td><?php
			$oFCKeditor = new FCKeditor('details') ;
			$oFCKeditor->Height	='350px' ;
			$oFCKeditor->Width	='680px' ;
			$oFCKeditor->BasePath	= sBasePath ;
			$oFCKeditor->Value		= $content ;
			$oFCKeditor->Create() ;?>&nbsp;</td>
          </tr>
				 <tr height="40"><td colspan="2">&nbsp;</td></tr><input name="a1" type="hidden" value="2" />
			   <tr><td colspan="2" align="center"><input name="submit" type="submit"  class="submitbox" value="Create"></td></tr>
			   </form>
			   </table>
 <!--end main page-->
	  <?php include "include/footer.php";?>

T1KUS90T
  root-grov@65.21.25.53:~$