-
Üyelik
25.12.2011
-
Yaş/Cinsiyet
30 / E
-
Meslek
Front/Back-end Developer
-
Konum
Ankara
-
Ad Soyad
** **
-
Mesajlar
96
-
Beğeniler
21 / 35
-
Ticaret
0, (%0)
header('Content-type: application/json');
-
Üyelik
25.12.2011
-
Yaş/Cinsiyet
30 / E
-
Meslek
Front/Back-end Developer
-
Konum
Ankara
-
Ad Soyad
** **
-
Mesajlar
96
-
Beğeniler
21 / 35
-
Ticaret
0, (%0)
bu şekilde çıktılarsan içerik tipi "text/html" belirtilir. ancak tipi "application/json" olarak belirtirseniz json olarak çıktılanır.
header('Content-type: application/json');
$json = array();
$json['contacts'][] = array(
'id'=> "c200",
'name'=> "Ahmet Talut",
'email'=> "wpeklentim@gmail.com",
'address'=>"Adres",
'gender'=> "Erkek",
'phone' => array(
'mobile'=> "23424324",
'home'=> "43242342",
'office'=> "",
));
echo json_encode($json);