Jump to content

[SOLVED] Simple PHP Problem - Please help


lJesterl

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;

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.