i want to know how i can display or show the contents or the values of an array into one whole output.
for example if i have an array with 5 different values, how can i display what that array holds?
thanks
<?php
$array = array("size" => "XL", "color" => "gold");
print_r(array_values($array));
?>
Array
(
[0] => XL
[1] => gold
)