Jump to content

Query Help


Recommended Posts

i have been messing with my php script trying to get it to work.

before trowing my monitor out of the window i thought maybe you guys know what is going on:)

its a small piece of script from a forum.

this peace of code delete's a complete topic from my forum and will also set the total number of replys back.

lets say my counter is on 15 for the amount of replys that are on my forum.

then when i delete a topic with only 5 replys in it, i want the counter to go back to 10.

so i wrote this script.

 

 

$quik =mysql_query("SELECT * FROM forumnews WHERE vantopicid = '$topic_id' ") or die(mysql_error());

$ab =mysql_num_rows($quik);

if (($ab = 1) OR ($ab = 0)){

 

}else{

mysql_query("UPDATE forums SET nrofreplys = nrofreplys-'$ab' WHERE forum_id = '$vfi' ") or die(mysql_error());

}

 

the damn thing just wont work, anybody have an idea???

thanks in advance  ;D

 

 

 

Link to comment
Share on other sites

try this

<?php
$quik =mysql_query("SELECT * FROM forumnews WHERE vantopicid = '$topic_id' ") or die(mysql_error());
$ab =mysql_num_rows($quik);
if (($ab != 1) OR ($ab != 0)){
mysql_query("UPDATE forums SET nrofreplys = nrofreplys-'$ab' WHERE forum_id = '$vfi' ") or die(mysql_error());
}
?>

 

your code sais that if its true do nothing , so why not tell it if its NOT true then do something, and the fault with your code was to do with = signs

 

a = b assigns a with the value of b

a == b checks to see if a is equal to b

 

you were assigning variables not checking them

 

and where is $vfi assigned???

 

another way

<?php
$quik =mysql_query("SELECT * FROM forumnews WHERE vantopicid = '$topic_id' ") or die(mysql_error());
$ab =mysql_num_rows($quik);
if ($ab > 1){
mysql_query("UPDATE forums SET nrofreplys = nrofreplys-'$ab' WHERE forum_id = '$vfi' ") or die(mysql_error());
}
?>

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.