Data Type Php

  $my_array = array();
  $pets = array('A', 'S', 'B', 'W');
  $person = array('B', 'J', 24, 'CA');
  $customer = array('first' => 'Bill', 'last' => 'Jones','age' => 24, 'state' => 'CA');
  print "

Pet number 1 is named '$pets[0]'.

\n";
  print "

The person's age is $person[2].

\n";
  print "

The customer's age is {$customer['age']}.

\n";
?>