Jump to content

Recommended Posts

For the life of me I cant remember how to add in php. Here is what im trying to do with some code.


$result=mysql_query("select COUNT(*) from rainbow6_ban");
$result=mysql_fetch_array($result);
$totalbanr6 ="$result[0]";

$rsb=mysql_query("select COUNT(*) from roguespear_ban");
$rsb=mysql_fetch_array($rsb);
$totalbanrs ="$rsb[0]";

$totalbanned=$totalbanr6 + $totalbanrs";


 

I'm trying  to add $totalbanrs and $totalbanr6 together and having the sum be $totalbanned.

 

With it like that it shows "1 + 1" because there is 1 banned from each.

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/55494-solved-simple-php-problem-please-help/
Share on other sites

Too many " so you were gettings strings not numbers. Try this:

 

$result=mysql_query("select COUNT(*) from rainbow6_ban");
$result=mysql_fetch_array($result);
$totalbanr6 =$result[0];

$rsb=mysql_query("select COUNT(*) from roguespear_ban");
$rsb=mysql_fetch_array($rsb);
$totalbanrs =$rsb[0];

$totalbanned=$totalbanr6 + $totalbanrs;

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.