Reference the assiciate array element : Associate Array « Data Structure « PHP
- PHP
- Data Structure
- Associate Array
Reference the assiciate array element
<?
$birthdays['K'] = '1988-04-12';
$birthdays['S'] = '1986-05-16';
$birthdays['D'] = '1983-02-09';
echo('My birthday is: ' . $birthdays['K']);
?>
Related examples in the same category