lJesterl Posted June 13, 2007 Share Posted June 13, 2007 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. Quote Link to comment https://forums.phpfreaks.com/topic/55494-solved-simple-php-problem-please-help/ Share on other sites More sharing options...
AndyB Posted June 13, 2007 Share Posted June 13, 2007 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; Quote Link to comment https://forums.phpfreaks.com/topic/55494-solved-simple-php-problem-please-help/#findComment-274226 Share on other sites More sharing options...
lJesterl Posted June 13, 2007 Author Share Posted June 13, 2007 ty that worked Quote Link to comment https://forums.phpfreaks.com/topic/55494-solved-simple-php-problem-please-help/#findComment-274227 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.