Posts by Joao • 53 points
3 posts
-
0
votes1
answer73
viewsQ: How to sort random array in PHP
Hello guys I’m having a hard time sorting this array with values of sub arrays so that whenever the script is called comes with different values randomly? This is the normal array: $results = array…
-
3
votes3
answers1393
viewsQ: Sort array in PHP
array (0 => array 1 => int 5 1 => array 2 => int 3 2 => array 8 => int 5); so that he stays that way array (0 => array 1 => int 5 2 => array 8 => int 5 1 => array 2…
-
-1
votes1
answer2330
viewsQ: String concatenation in PHP from Array
I have a query to my database that returns to me an array each database row is an array, $qr = DBRead('sales', "WHERE status = 1"); foreach ($qr as $position => $linha){ $vendas =…