1<?php
2$jsonurl = "https://reqres.in/api/users/2";
3$json = file_get_contents($jsonurl);
4$jsonDecode = json_decode($json, true);
5echo $jsonDecode['data']['email'];
6?>
1<?php
2$jsonurl = "https://reqres.in/api/users?page=2";
3$json = file_get_contents($jsonurl);
4$jsonDecode = json_decode($json, true);
5var_dump($jsonDecode['data']);
6foreach($jsonDecode['data'] as $mydata){
7 echo $mydata['email'] . "<br>";
8}
9?>