because you execute the query twice. Remove the last line, it is not needed as UPDATE does not return any result.

Paul Ferrie wrote:

Hi guys,
I am working on a flash forum for my site.  Came with the FOED book,

anyways i am tyring to delete the threadCount by -1 from the db.
could below does dlete the count but in multipules of 2.

Anyone

cheers

$query = "UPDATE forumForums SET threadCount = threadCount -1 WHERE forumID
= $forumID";
if(!mysql_query($query)) {
    fail("Error deleting thread Count");
}
$result = @mysql_query($query);






--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to