I was just wondering if there is a way to display this one after the other rather than first amounts than dates.
$apaidString = $apaid;
$daterString = $dater;
$apaidArray = explode(',', $apaidString);
$daterArray = explode(',', $daterString);
<?php foreach($apaidArray as $apaid_Array){
echo trim($apaid_Array,",").'<br>';}?>
<?php foreach($daterArray as $dater_Array){
echo trim($dater_Array,",").'<br>';}?>
This code will display:
50
60
10
11-11-2016
12-11-2016
14-11-2016
What i would need would be:
50 11-11-2016
60 12-11-2016
10 14-11-2016
I get the values from a MySQL.