<?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 counts the number of occurrences of each word in a given sentence. |
Write a PHP script that generates and displays a simple multiplication table for the numbers 1 to 5. |
Write a PHP script that calculates the sum of digits in a given number. |
Create a PHP script that checks whether a given number is a prime number or not. |
Create a PHP script that calculates and displays the area of a rectangle given its length and width. |
How to show location using google map in JavaScript? |
Create a PHP script that processes a form submission and displays the submitted data. |
how to get current latitude and longitude using google map api in php? |
