foreach Loop through an array. #php#loop $colours_arr = array('orange','blue','purple'); foreach( $colours_arr as $colour){ echo $colour; } copy