Gastenboek staat niet goed in de site
Ga even je pm lezen
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
<?php
while($data = mysql_fetch_array($uitvoer)) {
$output .= '<table style="border: 1px solid #000000; width: 70%;" cellpadding="0">';
$output .= '<tr>';
$output .= '<td style="background-color: #CCCCCC;">Bericht geschreven door <b>'.stripslashes($data["naam"]).'</b> op '.stripslashes($data["datum"]).' om '.stripslashes($data["tijd"]).'</td>';
$output .= '</tr>';
$output .= '<tr>';
$output .= '<td>'.nl2br(stripslashes($data['bericht'])).'</td>';
$output .= '</tr>';
$output .= '</table>';
$output .= "<hr />"; // dit is die lijn waar ik het over had. Misschien is het mooi, anders moet je deze lijn gewoon weghalen :p
}
?>
while($data = mysql_fetch_array($uitvoer)) {
$output .= '<table style="border: 1px solid #000000; width: 70%;" cellpadding="0">';
$output .= '<tr>';
$output .= '<td style="background-color: #CCCCCC;">Bericht geschreven door <b>'.stripslashes($data["naam"]).'</b> op '.stripslashes($data["datum"]).' om '.stripslashes($data["tijd"]).'</td>';
$output .= '</tr>';
$output .= '<tr>';
$output .= '<td>'.nl2br(stripslashes($data['bericht'])).'</td>';
$output .= '</tr>';
$output .= '</table>';
$output .= "<hr />"; // dit is die lijn waar ik het over had. Misschien is het mooi, anders moet je deze lijn gewoon weghalen :p
}
?>
Zo dan :)
Gewijzigd op 12/06/2010 22:23:56 door Joost van der Meijden
Waar worden die berichten eigenlijk opgeslagen, voor als ik ze wil verwijderen?
Zaql zo even op je pm reageren
De berichten komen in een database te staan, u zult een aparte pagina moeten aanmaken om berichten te verwijderen.
Die pagina moet alleen wel beveiligd worden zodat alleen u (en e.v.t. andere admins van de website) berichten kunnen verwijderen.
Ik kan natuurlijk vanuit de db de berichten gewoon verwijderen, bedankt!
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
if ($uitvoer = mysql_query($sql)) {
while($data = mysql_fetch_array($uitvoer)) {
$output .= '<table style="border: 1px solid #000000; width: 70%;" cellpadding="0">';
$output .= '<tr>';
$output .= '<td style="background-color: #CCCCCC;">Bericht geschreven door <b>'.stripslashes($data["naam"]).'</b> op '.stripslashes($data["datum"]).' om '.stripslashes($data["tijd"]).'</td>';
$output .= '</tr>';
$output .= '<tr>';
$output .= '<td>'.nl2br(stripslashes($data['bericht'])).'</td>';
$output .= '</tr>';
$output .= '</table>';
$output .= "<hr />"; // dit is die lijn waar ik het over had. Misschien is het mooi, anders moet je deze lijn gewoon weghalen :p
}
$output .= "<br />";
if ($page > 1) {
$vorige = $page-1;
$output .= "<a href='gastenboek.php?page=".$vorige."'>Vorige</a> ";
}
if ($page < ceil($aantal/$perpage)) {
$volgende = $page + 1;
$output .= "<a href='gastenboek.php?page=".$volgende."'>Volgende</a>";
}
}
else {
$output .= mysql_error();
}
?>
if ($uitvoer = mysql_query($sql)) {
while($data = mysql_fetch_array($uitvoer)) {
$output .= '<table style="border: 1px solid #000000; width: 70%;" cellpadding="0">';
$output .= '<tr>';
$output .= '<td style="background-color: #CCCCCC;">Bericht geschreven door <b>'.stripslashes($data["naam"]).'</b> op '.stripslashes($data["datum"]).' om '.stripslashes($data["tijd"]).'</td>';
$output .= '</tr>';
$output .= '<tr>';
$output .= '<td>'.nl2br(stripslashes($data['bericht'])).'</td>';
$output .= '</tr>';
$output .= '</table>';
$output .= "<hr />"; // dit is die lijn waar ik het over had. Misschien is het mooi, anders moet je deze lijn gewoon weghalen :p
}
$output .= "<br />";
if ($page > 1) {
$vorige = $page-1;
$output .= "<a href='gastenboek.php?page=".$vorige."'>Vorige</a> ";
}
if ($page < ceil($aantal/$perpage)) {
$volgende = $page + 1;
$output .= "<a href='gastenboek.php?page=".$volgende."'>Volgende</a>";
}
}
else {
$output .= mysql_error();
}
?>
Zo moet het werken :)
En ik heb u net nog een PM gestuurd :)