?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/editpost.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 `title`='$title',`metakeyword`='$Meta',`details`='$Des' where `catId`='$id'"); $msg="Product Category has been Successfully Changed"; } 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><?=$cat->catName?></td></tr> <tr height="40"><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap">Title</td><td><input name="title" class="inputbox" value="<?=$cat->title?>"> </td></tr> <tr height="40"><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap">Meta Keyword</td><td><textarea name="Meta" class="inpu"><?=$cat->metakeyword?></textarea> </td></tr> <tr height="40"><td colspan="2"> </td></tr> <tr bgcolor="#EEEEEE"><td class="textboxcap">Description</td><td><textarea name="Des" class="inpu"><?=$cat->details?></textarea> </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";?>