?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/managepost.php |
<?php include "include/header.php"; if($_GET['idst']) { $act =$_GET['act']==0 ? 1 : 0; $obj->query("update category set `status`='$act' where `catId`='".$_GET['idst']."'"); } if($_GET['iddl']) { $obj->query("delete from category where `catId`='".$_GET['iddl']."'"); } ?> <!--main page--> <form name="categoty" action="" method="post"> <table cellpadding="4" cellspacing="0" border="0" width="90%" class="normaltext" align="center"> <tr bgcolor="#ccc"><td align="center" colspan="6"><strong>Album Management</strong></td></tr> <tr><td colspan="6" align="right"> </td></tr> <tr bgcolor="#ccc"><td align="center"><strong>Serial No</strong></td><td align="center"><strong>Name</strong></td><td align="center"><strong>Title</strong></td><td align="center"><strong>Meta Keyword</strong></td><td align="center"><strong>Description</strong></td> <td align="center"><strong>Edit</strong></td></tr> <?php $no=1; $sql="select * from category where type ='2'"; $total=$obj->count_row($sql); $result=$obj->query($sql); while($row=$obj->fetch_query($result)) { if($row->status==0) $status="Inactive"; else $status="Active"; ?> <tr><td align="center"><?=$no?></td><td align="center"><?=$row->catName?></td><td align="center"><?=$row->title?></td><td align="center"><?=$row->metakeyword?> </td><td align="center"><?=$row->details?> </td> <td align="center"><a href="editpost.php?idd=<?=$row->catId?>"><img src="images/pencil.png" alt="Edit"></a> </td> <?php $no++; } ?> </tr> </table> </form> <!--end main page--> <?php include "include/footer.php";?>