| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/rsdgroup/adminPanel/ |
Upload File : |
<?php
include_once("session.php");
include_once("settings.php");
include_once("functions.php");
if($_REQUEST['action'] == 'DeleteNews'){
$sql = "delete from tblNews where id = '".$_REQUEST['id']."'";
mysql_query($sql) or die(mysql_error());
}
?>
<LINK href="mel.css" type=text/css
rel=stylesheet><LINK href="sdmenu.css"
type=text/css rel=stylesheet>
<table width="94%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><form id="form1" name="form1" action="compose_mail.php" method="post" onsubmit="return validate();">
<fieldset>
<legend>NEWS LIST FORM</legend>
<table width="100%" border="0" cellspacing="2" cellpadding="0">
<?php
if($msg!=""){ ?>
<tr valign="middle" class="general">
<td height="26" colspan="3">
<?=$msg;?>
</td>
</tr>
<?php } ?>
<tr valign="middle" class="general">
<td height="26" colspan="3"><input type="button" name="btnadd2" value="Add News" class="button" onclick="window.location.href='news_add.php?mode=Add&page=addnews'" style="width:150px" /></td>
</tr>
<tr valign="middle" class="general">
<td width="29%" height="26">Title</td>
<td width="55%" height="26" >Description</td>
<td width="16%" align="center" >Action</td>
</tr>
<?php
$query="select * from tblNews where `type` = 'news' and `isDeleted` = 'no'";
$result=mysql_query($query);
while($arrayCategory=mysql_fetch_assoc($result))
{
$id=$arrayCategory['id'];
?>
<tr valign="top" class="generaltxt">
<td height="26"><?php echo $arrayCategory['title']; ?></td>
<td height="26" align="justify"><? echo substr(strip_tags($arrayCategory['description']),0,55)."..." ;?></td>
<td align="center">
<!-- <a href="winner_list.php?id=<?=$arrayCategory['id']?>&page=addwinner" class="action1"><strong>Winner's</strong></a> | -->
<a href="news_add.php?id=<?=$arrayCategory['id']?>&mode=Edit&page=addnews" class="action1"><strong>Edit</strong></a>
| <a href="news_list.php?id=<?=$arrayCategory['id']?>&action=DeleteNews" onClick="return confirm('Are you sure you want to delete this record?')" class="action1"><strong>Delete</strong></a></td>
</tr>
<tr align="right" valign="middle" class="generaltxt">
<td height="10" colspan="3"> </td>
</tr>
<?php } ?>
<tr align="right" valign="middle" class="generaltxt">
<td height="10" colspan="3"> </td>
</tr>
<tr align="right" valign="middle" class="generaltxt">
<td height="26" colspan="3"><input type="button" name="btnadd" value="Add News" class="button" onclick="window.location.href='news_add.php?mode=Add&page=addnews'" style="width:150px" /></td>
</tr>
</table>
</fieldset>
</form></td>
</tr>
</table>