aQUI TENDREMOS NUESTRO BUZON DE SALIDA
leer_mensajes3.php
Código PHP:
Ver original<?php
require("config.php");
$nickUsuarioL= $_SESSION['nick'];
$accion= $_POST['accion'];
//conexion a la BD MYSQL
if($accion == "borrar"){
require("config.php");
$SQLborrar = "DELETE FROM mensajes WHERE msgid IN(".implode(', ', $_POST['mens']).")";
echo "<font face=\"Tahoma\" size=\"2\"><b>Mensaje Borrado</b>";
} else {
$asunte = $row['asunto'];
$resto = substr("$asunte", 0, 40); $aydi = $row['msgid'];
?><body bgcolor="#C0C000">
<form action="<?php $_SERVER['PHP_SELF']; ?>" method="post" name="2">
<table width="395" border="1" cellpadding="0" cellspacing="0" bordercolor="#498551" bgcolor="#C0C000">
<tr>
<td bgcolor="#C0C000" width="45">
<div align="center"><font face="Tahoma" size="1">
<input type="checkbox" name="mens[]" value="<?php echo $aydi; ?>">
</font></div></td>
<td width="89" bgcolor="#C0C000"><font face="Tahoma" color="black" size="1">
<center><i><?php echo $row["para"]; ?></i></center>
</font></td>
<td width="109" bgcolor=#C0C000>
<div align="center"><a href="http:leer_mensajes4.php<?php echo '?id= '.$row['msgid'] . ''; ?>" target="_parent">
<font face="Tahoma" color="black" size="1"><u><?php echo "$resto.."; ?></u></font></a></div></td>
<td bgcolor="#C0C000" width="142"><div align="center"><font face="Tahoma" color="black" size="1"><?php echo $row["fecha"]; ?></font></div></td>
</tr>
</table>
<?php
}
?>
<br>
</form>
<?php
}
?>