?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/videos2.php |
<?php include "include/header.php"; //if($_POST) //{ //for($i=0;$i<count($_POST['orderId']);$i++) // { // $sql = "update banner set catOrder = '".$_POST['orderValue'][$i]."' where sno='".$_POST['orderId'][$i]."'"; // $obj->query($sql); // } //} if($_GET['idst']) { $act =$_GET['act']==0 ? 1 : 0; $obj->query("update videos set `status`='$act' where `sno`='".$_GET['idst']."'"); } if($_GET['idd']) { $obj->query("delete from videos where `sno`='".$_GET['idd']."'"); } ?> <!--main page--> <form name="categoty" action="" method="post"> <table cellpadding="4" width="90%" cellspacing="0" border="0" class="normaltext" align="center"> <tr bgcolor="#ccc"><td align="center" colspan="5"><strong>Video Management</strong></td></tr> <tr><td colspan="5" align="right"><a href="addvideos2.php"><input type="button" value="Add Videos" class="submitbox" name="add"/></a></td></tr> <tr bgcolor="#ccc"><td align="center" colspan="2"><strong>Serial No</strong></td><td align="center"><strong>Name</strong></td><td align="center"><strong>Status</strong></td> <td align="center"><strong>Edit</strong></td></tr> <?php $no=1; $sql="select * from videos"; $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" colspan="2"><?=$no?></td><td align="center"><?=$row->videos?></td><td align="center"><a href="videos2.php?idst=<?=$row->sno?>&act=<?=$row->status?>"><?=$status?></a></td> <td align="center"><a href="videos2.php?idd=<?=$row->sno?>"><img src="images/cross.png" alt="Delete"></a></td> <?php $no++; } ?> </tr> </table> </form> <!--end main page--> <?php include "include/footer.php";?>