To see the contents of the array you can use it.
1) print_r($array);
2) if you want nicely formatted array then:
echo '
'; print_r($array); echo '</pre>';
3) use var_dump($array) to get more information of the content in the array like datatype and length.
4) you can loop the array using php’s foreach(); and get the desired output.
$no = array("One", "Two", "Three", "Four"); foreach ($no as $value) { echo "$value "; } <a href="https://www.freepik.com/free-photo/person-front-computer-working-html_36189963.htm#fromView=search&page=1&position=3&uuid=74ee7dbb-c8df-488a-bd2c-2b3a74f11346">Image by freepik</a>