Posts by André Monjardim • 31 points
2 posts
-
1
votes2
answers73
viewsQ: taking out the commas and sorting with php mysql
I have a problem here to solve... I take from the bank the numbers that are grouped with comma. Split with explode Ex: $dados = "36,38,40,42"; $separar = explode(",",$dados); $result = $separar[0];…
arrayasked André Monjardim 31 -
2
votes2
answers106
viewsQ: Percentage of vote in php within a while
I need to take the votes of the candidates that are in mysql and generate the percentage of votes that each one had. How can I view the result since it is inside a while? $sql = mysql_query("SELECT…