?
Path : /home/enviro777/public_html/admin/ |
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"> <?=$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() ;?> </td> </tr> <tr height="40"><td colspan="2"> </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";?>