<?php
$json_data = '{"name": "John", "age": 30, "city": "New York"}';
$data = json_decode($json_data, true);
echo "Name: " . $data['name'] . ", Age: " . $data['age'] . ", City: " . $data['city'];
?>
<?php
$json_data = '{"name": "John", "age": 30, "city": "New York"}';
$data = json_decode($json_data, true);
echo "Name: " . $data['name'] . ", Age: " . $data['age'] . ", City: " . $data['city'];
?>
Related
Create a PHP script that processes a form submission and displays the submitted data. |
Write a PHP script that generates and displays a simple multiplication table for the numbers 1 to 5. |
Write a PHP function to check if a given string is a palindrome |
Write a PHP script that generates a random password of a specified length. |
how to get current lat and lng from ip address using google map api in php? |
Write a PHP script that checks if a given string is a valid email address. |
How to get the largest element in an array of numbers |
Write a PHP script that calculates the sum of digits in a given number. |