Web Development Tutorials
//

Tag: MySQL

Programming

Query the Database With Laravel Eloquent

Eloquent maps each table to a model class, so you read and write rows by calling methods instead of writing SQL. This tutorial covers…

August 9, 2026

Database Administration

Create a View in MySQL

A view stores a SELECT under a name, so you can query it like a table while the data stays live in the base…

August 9, 2026

Programming

Paginate MySQL Results With PHP PDO

Splitting a long result set across pages comes down to turning a page number into a LIMIT and an OFFSET. This tutorial counts the…

August 8, 2026