PHP expert |
|
Oke, wat ik bedoelde is.. kan het met tabellen lukken of moet ik echt op divs overstappen?
edit Nevermind, ik heb nu wel tabellen gebruikt om de tekst en het is nu wel gelukt
Ik heb nog ewel een vraag, hoe kan ik zorgen dat als ik op een icoontje klik en dan hij die tekst laat zien, ik een veld in de database laat updaten? Hoe weet data ding wanneer hij moet updaten?
Mocht iemand hetzelfde probleem heben
<table cellpadding='0' cellspacing='0' style='border: 1px #c0bdbd solid'>
<tr>
<td colspan='2' style='text-align: center; background-color: #dce0d2'>Alle <b>gelezen</b> berichten:</td>
</tr>
<tr>
<td style='width: 100px; background-color: #c9d5af'><i>Acties:</i></td>
<td style='width: 300px; background-color: #c9d5af'><i>Onderwerp:</i></td>
</tr>
<?php
if(mysql_num_rows($query) == 0)
{
?>
<tr>
<td colspan='2'>Er zijn geen gelezen berichten</td>
</tr>
<?php
}
else
{
?>
<tr>
<td colspan='2'>
<?php
$i = 0;
while($arr = mysql_fetch_array($query))
{
$color = ($i++ % 2) ? '#c9d5af' : '#dce0d2';
?>
<table cellpadding='0' cellspacing='0' style='background-color: <?= $color ?>'>
<tr>
<td style='width: 100px; background-color: <?= $color ?>'>
<a href="#" onclick="showorhide('nr_<?= $arr['contactid'] ?>');"><img src='./images/icons/email.gif' alt='' /></a>
<a href='#' onclick="verwijder('?p=admin/admin&menu=contact&mod=contact&act=verwijder&id=','?p=admin/admin&menu=contact&mod=contact&act=gelezen','<?= $arr['contactid'] ?>', 'Weet u zeker dat u dit email bericht wilt verwijderen?')"><img src='./images/icons/delete_mail.gif' alt='' /></a>
</td>
<td style='width: 430px; background-color: <?= $color ?>'>
<?= '[' .$arr['categorie'] . '] <b> ' . uit($arr['onderwerp']) . ' </b> door ' . uit($arr['naam']) ?>
</td>
</tr>
</table>
<table cellpadding='0' cellspacing='0' style='background-color: <?= $color ?>; display: none' id='nr_<?= $arr['contactid'] ?>'>
<tr>
<td style='width: 100px'> </td>
<td style='width: 430px; background-color: <?= $color ?>'><?= uit($arr['bericht']) ?></td>
</tr>
</table>
<?php
}
?>
</td>
</tr>
<?php
}
?>
</table>
<table cellpadding='0' cellspacing='0' style='border: 1px #c0bdbd solid'> <tr> <td colspan='2' style='text-align: center; background-color: #dce0d2'>Alle <b>gelezen</b> berichten:</td> </tr> <tr> <td style='width: 100px; background-color: #c9d5af'><i>Acties:</i></td> <td style='width: 300px; background-color: #c9d5af'><i>Onderwerp:</i></td> </tr> <?php { ?> <tr> <td colspan='2'>Er zijn geen gelezen berichten</td> </tr> <?php } else { ?> <tr> <td colspan='2'> <?php $i = 0; { $color = ($i++ % 2) ? '#c9d5af' : '#dce0d2'; ?> <table cellpadding='0' cellspacing='0' style='background-color: <?= $color ?>'> <tr> <td style='width: 100px; background-color: <?= $color ?>'> <a href="#" onclick="showorhide('nr_<?= $arr['contactid'] ?>');"><img src='./images/icons/email.gif' alt='' /></a> <a href='#' onclick="verwijder('?p=admin/admin&menu=contact&mod=contact&act=verwijder&id=','?p=admin/admin&menu=contact&mod=contact&act=gelezen','<?= $arr['contactid'] ?>', 'Weet u zeker dat u dit email bericht wilt verwijderen?')"><img src='./images/icons/delete_mail.gif' alt='' /></a> </td> <td style='width: 430px; background-color: <?= $color ?>'> <?= '[' .$arr['categorie'] . '] <b> ' . uit($arr['onderwerp']) . ' </b> door ' . uit($arr['naam']) ?> </td> </tr> </table> <table cellpadding='0' cellspacing='0' style='background-color: <?= $color ?>; display: none' id='nr_<?= $arr['contactid'] ?>'> <tr> <td style='width: 100px'> </td> <td style='width: 430px; background-color: <?= $color ?>'><?= uit($arr['bericht']) ?></td> </tr> </table> <?php } ?> </td> </tr> <?php } ?> </table>
|