Web Development Tutorials
//

Tag: JSON

Database Administration

Add a Generated Column in MySQL

A generated column holds a value MySQL computes from the rest of the row, so it can never drift out of step. This tutorial…

August 28, 2026

Database Administration

Store and Query JSON Data in MySQL

Use the JSON column type to store documents MySQL actually understands. This tutorial inserts JSON, reads keys with JSON_EXTRACT and the ->> shorthand, edits…

August 27, 2026

Programming

Make an HTTP Request in PHP with cURL

Call a JSON API from PHP with the bundled cURL extension. Run a GET and a POST, read the HTTP status code, and decode…

August 2, 2026

Programming

Read and Parse JSON files in PHP

Read and parse JSON files using the functions file_get_contents() and json_decode() in PHP. The function file_get_contents() will read the entire file into a string,…

April 5, 2023