Guest User

Untitled

a guest
Jun 20th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $User = array(
  2. 'name' => 'dinesh',
  3. 'email' => 'dinesh@xyz.com',
  4. 'age' => 25
  5. );
  6.  
  7. foreach ($User as $key => $value) {
  8. echo $key.' is '.$value.'<br />';
  9. }
  10.  
  11. name is dinesh
  12. email is dinesh@xyz.com
  13. age is 25
Add Comment
Please, Sign In to add comment