?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/editCategory.php |
<?php include "include/header.php"; include("fckeditor/fckeditor.php"); if($_POST) { extract($_POST); $sql="select * from category where catName='$name' and `catId` !='$id'"; $num=$obj->count_row($sql); if($num==0) { $obj->query("update category set `catName`='$name',`catUrl`='$cUrl',`details`='$details' where `catId`='$id'"); $obj->query("update product set `proUrl`='$cUrl' where `proType`='$id'"); } else $msg="This Product Category Name Already exist"; } if($_GET['idd']) { $res=$obj->query("select * from category where `catId`='".$_GET['idd']."'"); $cat=$obj->fetch_query($res); } ?> <!--main page--> <table cellpadding="5" cellspacing="0" border="0" class="normaltext" align="center" width="70%"> <tr bgcolor="#ccc" height="30"><td align="center" colspan="2"><strong>Edit 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="<?=$cat->catName?>"></td></tr> <tr height="40"><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap">Url</td><td><input name="cUrl" class="inputbox" value="<?=$cat->catUrl?>"></td></tr> <tr height="40"><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap"> Details</td><td> <?php $oFCKeditor = new FCKeditor('details') ; $oFCKeditor->BasePath = 'fckeditor/' ; $oFCKeditor->Height ='350px' ; $oFCKeditor->Width ='600px' ; $oFCKeditor->Value = stripslashes($cat->details); $oFCKeditor->Create() ; ?> </td></tr> <tr><td colspan="2" align="center"> <input name="id" value="<?=$_GET['idd']?>" type="hidden" /> <input name="submit" type="submit" class="submitbox" value="Submit"></td></tr> </form> </table> <!--end main page--> <?php include "include/footer.php";?>