Web Development Tutorials
//

Tag: Command Line

Database Administration

Combine Query Results With UNION in MySQL

A join widens a row by adding columns; UNION instead stacks one result on top of another. Build a single contact list from a…

August 12, 2026

Programming

Log and Display PHP Errors

PHP decides two things separately: whether to print a problem to the browser, and whether to write it to a file. Set display_errors and…

August 11, 2026

Server Administration

Set File and Directory Permissions With chmod

Set file and directory permissions with chmod, numerically and symbolically, and you control exactly who can read, write, or execute anything on a Linux…

August 11, 2026

Database Administration

Write a Subquery in MySQL

Write a subquery in MySQL to answer a question inside a question - a SELECT nested in another statement's WHERE or column list. This…

August 11, 2026

Server Administration

Create a systemd Service

Create a systemd service to keep a long-running program alive - started at boot, restarted on a crash, logs collected. This tutorial writes a…

August 10, 2026

Server Administration

Enable Gzip Compression in Apache

Enable gzip compression in Apache with mod_deflate and every text response shrinks before it crosses the wire. This tutorial loads the module, sets AddOutputFilterByType…

August 10, 2026