Skip to content

Commit

Permalink
formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ashfame committed Sep 20, 2012
1 parent b9c024c commit a2b2bb7
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions employees/index.php
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
<?php

$employee = array('shawn' => array(
'emp_no' => 0001,
'firstname' => 'Shawn',
'surname' => 'wrangler',
'dob' => array(
'date' => 9,
'month' => 'april',
'year' => 1988 ),
'age' => 24,
'mobile' => '+91-9767544344',
'email' => '[email protected]',
'address' => array(
'street no' => '',
'state' => 'New Delhi',
'country' => 'India',
'postal' => 116375 ) ));
$employee = array(
'shawn' => array(
'emp_no' => 0001,
'firstname' => 'Shawn',
'surname' => 'wrangler',
'dob' => array(
'date' => 9,
'month' => 'april',
'year' => 1988
),
'age' => 24,
'mobile' => '+91-9767544344',
'email' => '[email protected]',
'address' => array(
'street no' => '',
'state' => 'New Delhi',
'country' => 'India',
'postal' => 116375
)
)
);

print_r($employee);
print_r( $employee );

0 comments on commit a2b2bb7

Please sign in to comment.