Guest User

Untitled

a guest
Jan 21st, 2018
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <?php
  2. $bio1=["FirstName"=>"Fahmi dwi",
  3. "LastName"=>"syahputra",
  4. "Email"=>"fahmidwi45@gmail.com",
  5. "Agama"=>"ISLAM",
  6. "NoTelp"=>"08xxxxxxxxxxxx",
  7. "jenisKelamin"=>"Laki-Laki",
  8. "alamat"=>array(
  9. "provinsi"=>"Jawa Barat",
  10. "Kabupaten/Kota"=>"Kab.Bogor",
  11. "ZIP"=>"16680",
  12. "Jalan"=>"Gg. Masjid albarokah",
  13. )];
  14.  
  15. $bio2=["FirstName"=>"dwi",
  16. "LastName"=>"fahmi",
  17. "Email"=>"dwifhmi@gmail.com",
  18. "Agama"=>"ISLAM",
  19. "NoTelp"=>"08xxxxxxxxxxxx",
  20. "jenisKelamin"=>"Laki-Laki",
  21. "alamat"=>array(
  22. "provinsi"=>"Jawa Barat",
  23. "Kabupaten/Kota"=>"Bogor",
  24. "ZIP"=>"231231",
  25. "Jalan"=>"Jl raya dramaga",
  26. )];
  27.  
  28.  
  29.  
  30. $all=array();
  31. array_push($all,$bio1);
  32. array_push($all,$bio2);
  33. echo json_encode($all);
  34.  
  35.  
  36. ?>
Add Comment
Please, Sign In to add comment