mam vytvorenu databazu mailov v ramci mojej stranky.. zobrazenie mailov vyzera asi takto:
?
<?
@$messages = mysql_query("select a.Login, a.id, m.id_pri, m.id_mes, m.datum_odos, m.cas_odos, m.time, m.precitane from (Admin a inner join message m on a.id=m.id_odos) where id_pri='$idusr' order by m.time desc");
$pocet_msg=mysql_num_rows($messages);
@$neprecitane = mysql_query("select*from message where id_pri='$idusr' and precitane=''");
$pocet_neprecitanych = mysql_num_rows($neprecitane);
?>
<table cellpadding="3" cellspacing="0" class="content">
<tr><td class="topic_up2"><table width="586" cellpadding="0" cellspacing="0"><tr><td align="left" class="bold_w">Po?ta</td><td align="right" class="small_intab_white">Spr?vy: <?echo"$pocet_msg"; if($pocet_neprecitanych!=0): echo" <font color="#de7339">Nepre??tan?: </font>$pocet_neprecitanych"; endif;?></td></tr></table></td></tr>
<tr><td align="center" valign="top">
<table align="center" class="mailing">
<tr><td></td><td class="small_intab_orange" align="left">Odosielate?</td><td class="small_intab_orange" align="left">D?tum Prijatia</td><td class="small_intab_orange" align="left">Pre??tan?</td></tr>
<?
while($msg = mysql_fetch_array($messages))
{
if($msg[precitane]==0):
echo'<tr><td align="left"><input type="checkbox"></td><td align="left"><a href="index.php?page=message_read&id_mes='.$msg[id_mes].'" class="smallhyp_o" title="??taj spr?vu od '.$msg[Login].'">'.$msg[Login].'</a></td><td class="small_intab_white" align="left">'.$msg[datum_odos].' - '.$msg[cas_odos].'</td><td class="small_intab_orange" align="left">Nepre??tan?</td></tr>';
else:
echo'<tr><td align="left"><input type="checkbox"></td><td align="left"><a href="index.php?page=message_read&id_mes='.$msg[id_mes].'" class="smallhyp_w" title="??taj spr?vu od '.$msg[Login].'">'.$msg[Login].'</a></td><td class="small_intab_white" align="left">'.$msg[datum_odos].' - '.$msg[cas_odos].'</td><td class="small_intab_white" align="left">'.$msg[precitane].'</td></tr>';
endif;
echo'';
}
?>
<tr><td colspan="4" align="center" bgcolor="#212121">
<table>
<tr><td class="small_intab_orange">V?etky</td><td><input type="checkbox"></td>
</table>
</td></tr>
</table>
</td></tr>
</table>
teda zobrazi sa mi chceckbox k danej message, odosielatel atd... na zaver je chceckbox "Vsetky" pomocou ktoreho chcem aby sa mi oznacili vsetky ostatne chceckboxy patriace k spravam aby som ich mohol potom naraz vymazat...neviete ako? dikeeeeees?