?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/producti.php |
<?php include "include/header.php"; if($_GET['id']) { //echo $id; //exit; $res=$obj->query("select * from category where `catId`='".$_GET['id']."'"); $rowcat=$obj->fetch_query($res); } if(@$_GET['idst']) { $status =$_GET['act']==0 ? 1 : 0; $obj->query("update product set `proStatus`='$status' where `productId`='".$_GET['idst']."'"); } if(@$_GET['idd']) { $obj->query("delete from product where `productId`='".$_GET['idd']."'"); } if(@$_GET['page']) $no=$_GET['page']*10-9; else $no=1; ?> <!--main page--> <table cellpadding="4" cellspacing="0" border="0" width="90%" class="normaltext" align="center"> <tr bgcolor="#ccc"><td align="center" colspan="5"><strong><?=$rowcat->catName?> Management</strong></td></tr> <tr><td colspan="5" align="right"><a href="addProducti.php?id=<?=$rowcat->catId?>"><input type="button" value="Add Product" class="submitbox" name="add"/></a></td></tr> <tr bgcolor="#ccc"><td align="center"><strong>Serial No</strong></td> <td align="center"><strong>Product Name</strong></td> <td align="center"><strong>Status</strong></td><td colspan="2" align="center"><strong>Edit</strong></td> <?php $sql="select * from product where `proType`='$rowcat->catId'"; $rs =$obj->query($sql); $num=$obj->count_row($sql); if($num==0) echo "<tr height='60'><td colspan='4' align='center'><strong>No Products</strong></td></tr>"; else { while($row=$obj->fetch_query($rs)) { if($row->proStatus==0) $status="Inactive"; else $status="Active"; ?> <tr><td align="center"><?=$no?></td><td align="center"><?=$row->proName?></td><td align="center"><a href="product.php?id=<?=$rowcat->catId?>&idst=<?=$row->productId?>&act=<?=$row->proStatus?>"><?=$status?></a></td><td align="center" colspan="2"><a href="editProducti.php?id=<?=$rowcat->catId?>&eid=<?=$row->productId?>"><img src="images/pencil.png" alt="Edit"></a> <a href="producti.php?id=<?=$rowcat->catId?>&idd=<?=$row->productId?>"><img src="images/cross.png" alt="Delete"></a></td></tr> <?php $no++; } } ?> </table> <!--end main page--> <?php include "include/footer.php";?>