I want to count two rows from database and print as total count, the problem is i don’t know how to count the highlighted rows as total and echo.
What i do know is how to count the total cars from product like here below Database: vote_product
$result = mysql_query("select sum(product LIKE '%cars%')as cars from vote_product
");
Which counts the total cars from database, what i want to know is how to count the highlighted values with red, which will output 72 as total votes, and that in a while loop.