Nieuw lid |
|
Hoi,
Ik heb een PHP code van een forum, het probleem is dat het veld 'aantalreplies' niet verhoogd wordt met +1.
Al het andere wordt wel goed gedaan.
Dus per keer dat iemand iets post in dat bepaalde topic moet er 1 bijkomen.
<?
if ($submit) {
if ($inhoud == "")
{
geeferror("3");
}
$sql = "select * from topic where id = '$id'";
$result = mysql_query($sql);
while ($record = mysql_fetch_object($result)) {
}
$datum = $maand_array[date("m")] .date("d-m-Y H:i:s");
$aantalreplies = ($record->aantalreplies +1);
$nick = $HTTP_SESSION_VARS[session_nickname];
$ip = $REMOTE_ADDR;
$sql = "UPDATE topic SET aantalreplies = '$aantalreplies', lastposter = '$nick', lastdatum = '$datum' where id = '$topic' ";
mysql_query($sql);
$sql = "INSERT INTO reply(topic, forum, poster, datum, inhoud, ip) VALUES ('$topic', '$forum', '$nick', '$datum', '$inhoud', '$ip')";
mysql_query($sql);
?>
<? if ($submit) { if ($inhoud == "") { geeferror("3"); } $sql = "select * from topic where id = '$id'"; } $datum = $maand_array[date("m")] .date("d-m-Y H:i:s"); $aantalreplies = ($record->aantalreplies +1); $nick = $HTTP_SESSION_VARS[session_nickname]; $ip = $REMOTE_ADDR; $sql = "UPDATE topic SET aantalreplies = '$aantalreplies', lastposter = '$nick', lastdatum = '$datum' where id = '$topic' "; $sql = "INSERT INTO reply(topic, forum, poster, datum, inhoud, ip) VALUES ('$topic', '$forum', '$nick', '$datum', '$inhoud', '$ip')"; ?>
|