login  Naam:   Wachtwoord: 
Registreer je!
 Forum

updaten

Offline Ultimatum - 07/06/2006 07:45 (laatste wijziging 07/06/2006 15:46)
Avatar van UltimatumPHP 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 )

  1. <?php
  2. $select = mysql_query("SELECT replies FROM forum_topics WHERE topicid = ".$_GET['topicid']."") or die(mysql_error());
  3. $obj = mysql_fetch_object($select) or die(mysql_error());
  4.  
  5. $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']."'");
  6. $update = mysql_query("UPDATE forum_category SET topics = topics - 1 AND replies - '".$obj->replies."' WHERE catid = ".$_GET['catid']."");
  7. $update = mysql_query("UPDATE forum_category SET topics = topics + 1 AND replies + '".$obj->replies."' WHERE catid = '".$_POST['category']."'");
  8. header("Location: ?page=forum/reply&catid=".$_POST['category']."&topicid=".$_GET['topicid']."");
  9. ?>


krijg ook geen foutmelding als or die(mysql_error()); of error_reporting aan zet

gehele pagina
http://plaatscode.be/618/


Citaat:
nemesis edit: udpaten?

2 antwoorden

Gesponsorde links
Offline Thomas - 07/06/2006 12:01
Avatar van Thomas Moderator ...SET topics = topics - 1 AND replies - '".$obj->replies."'...

-->

...SET topics = topics - 1, replies = replies - ".$obj->replies."...

$obj->replies is geen string, lijkt me?
Offline Ultimatum - 07/06/2006 20:25
Avatar van Ultimatum PHP expert het werkt, thanx FangorN

@nemis hij moet de juiste aantal replies bij de juiste topic zetten 
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2025 Sitemasters.be - Regels - Laadtijd: 0.251s