?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/category2.php |
<?php include "include/header.php"; if($_POST) { for($i=0;$i<count($_POST['orderId']);$i++) { $sql = "update category set catOrder = '".$_POST['orderValue'][$i]."' where catId='".$_POST['orderId'][$i]."'"; $obj->query($sql); } } 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="5"><strong>Album Management</strong></td></tr> <tr><td colspan="5" align="right"><a href="addCategory2.php"><input type="button" value="Add Category" class="submitbox" name="add"/></a></td></tr> <tr bgcolor="#ccc"><td align="center"><strong>Serial No</strong></td><td align="center"><strong>Name</strong></td><td align="center"><strong>Status</strong></td><td align="center"><strong>Order</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"><a href="category.php?idst=<?=$row->catId?>&act=<?=$row->status?>"><?=$status?></a></td><td align="center"><select name="orderValue[]" style="width:90px;"> <?php $i=1; while($i<=$total) { ?> <option value='<?=$i?>' <?php if($row->catOrder==$i){echo "selected='selected'";}?>><?=$i?></option> <?php $i++; } ?> </select> <input type='hidden' value='<?=$row->catId?>' name='orderId[]' /> </td> <td align="center"><a href="editCategory.php?idd=<?=$row->catId?>"><img src="images/pencil.png" alt="Edit"></a> <a href="category2.php?iddl=<?=$row->catId?>"><img src="images/cross.png" alt="Delete"></a></td> <?php $no++; } ?> </tr> </table> </form> <!--end main page--> <?php include "include/footer.php";?>