Hello why do not you delete the text message?
PHP Code:
///////////////////////////////////////Delete chat shoutbox 2
else if($action=="delsh")
{
$shid = $_GET["shid"];
echo "<meta http-equiv=Refresh content=0;url=index.php?action=uchat&sid=$sid>";
echo "<head>";
echo "<title>Admin Tools</title>";
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
echo "</head>";
echo "<body>";
echo "<p align=\"center\">";
$sht = mysql_fetch_array(mysql_query("SELECT shouter, shout FROM ibwf_shouts2 WHERE id='".$shid."'"));
$msg = getnick_uid($sht[0]);
$msg .= ": ".htmlspecialchars((strlen($sht[1])<20?$sht[1]:substr($sht[1], 0, 20)));
$res = mysql_query("DELETE FROM ibwf_shouts2 WHERE id ='".$shid."'");
if($res)
{
mysql_query("INSERT INTO ibwf_mlog SET action='shouts2', details='<b>".getnick_uid(getuid_sid($sid))."</b> Cancella lo shout <b>".$shid."</b> - $msg', actdt='".(time() - $timeadjust)."'");
echo "<img src=\"../images/ok.gif\" alt=\"O\"/>Shout cancellato";
}else{
echo "<img src=\"../images/notok.gif\" alt=\"X\"/>Database Error";
}
echo "<br/><br/>";
Comment