//typical examples of an Array $vowel = array('a', 'e', 'i', 'o', 'u'); echo $vowel[0] .'
'; print '
'; print_r($vowel); print '
';
Hello World!