Posts by Elias Müller • 14 points
1 post
-
-1
votes1
answer28
viewsA: Foreach does not take $value
You are using print to display a array, should wear print_r($value,true). This function will return the value and will transform into string. print "$key : ". print_r($value,true) . "<br>"…