<?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
how to get country, state and city select option using google map api in php |
Create a PHP function to count the number of vowels in a string. |
Create a PHP script that processes a form submission and displays the submitted data. |
Create a PHP script that uses sessions to store and display user information. |
How to show location using google map in JavaScript? |
Write a PHP script that generates and displays a simple multiplication table for the numbers 1 to 5. |
Write a PHP script that connects to a MySQL database and fetches data from a table. |
How to reverses a given string using PHP. |