So, I\'m working with PHP for the first time and I am trying to retrieve and display the values of an array. After a lot of googling, the only methods I can find for this ar
you can easily use join()
$fruits = array("apple", "banana", "orange"); print join(" ".$fruits);