PHP expert |
|
ik ben bezig met een forum en als een admin een geheel topic wil verschuiven lukt dat, maar als er replies zijn blijven die op de main onder de huidige category staan
voorbeeld
forumnaam aantal topics aantal replies
het aantal topics lukt wel aanpassen (-1 bij huidig, +1 waar naar toe verschovern )
<?php
$select = mysql_query("SELECT replies FROM forum_topics WHERE topicid = ".$_GET['topicid']."") or die(mysql_error());
$obj = mysql_fetch_object($select) or die(mysql_error());
$update = mysql_query("UPDATE forum_topics SET title = '".addslashes(htmlspecialchars($_POST['title']))."', catid = '".$_POST['category']."', message = '".addslashes(htmlspecialchars($_POST['message']))."' WHERE topicid = '".$_GET['topicid']."' && catid = '".$_GET['catid']."'");
$update = mysql_query("UPDATE forum_category SET topics = topics - 1 AND replies - '".$obj->replies."' WHERE catid = ".$_GET['catid']."");
$update = mysql_query("UPDATE forum_category SET topics = topics + 1 AND replies + '".$obj->replies."' WHERE catid = '".$_POST['category']."'");
header("Location: ?page=forum/reply&catid=".$_POST['category']."&topicid=".$_GET['topicid']."");
?>
<?php $update = mysql_query("UPDATE forum_category SET topics = topics - 1 AND replies - '".$obj->replies."' WHERE catid = ".$_GET['catid'].""); $update = mysql_query("UPDATE forum_category SET topics = topics + 1 AND replies + '".$obj->replies."' WHERE catid = '".$_POST['category']."'"); header("Location: ?page=forum/reply&catid=".$_POST['category']."&topicid=".$_GET['topicid'].""); ?>
krijg ook geen foutmelding als or die(mysql_error()); of error_reporting aan zet
gehele pagina
http://plaatscode.be/618/
Citaat: nemesis edit: udpaten?
|