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…
Web Development Tutorials
NdrieL is a web-development tutorials site — clear, step-by-step guides for WordPress, PHP and Laravel, each one worked through from the first line of code to a result you can run. No fluff — just the steps that work.
New to the stack? Work through these in order — from setup to a running app.
Set up your site
Install WordPress Locally On WindowsCustomize safely
Create a WordPress Child ThemeAdd your own content
Register A Custom Post Type In WordPressMake it dynamic
Create A Shortcode In WordPressLoad your own code
Enqueue CSS And JavaScript In WordPressServer Administration
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…
Database Administration
Add a column to a MySQL table with ALTER TABLE - no drop, no re-import, the data stays put while the schema changes. This…
Database Administration
Import a CSV into MySQL with LOAD DATA INFILE, the server's bulk loader. This tutorial maps a comma-separated file onto a table in one…
Database Administration
Use GROUP BY in MySQL to collapse rows that share a value into one summary row each, with COUNT, SUM, AVG and MAX computing…
Programming
Eloquent maps each table to a model class, so you read and write rows by calling methods instead of writing SQL. This tutorial covers…
Database Administration
A view stores a SELECT under a name, so you can query it like a table while the data stays live in the base…
Programming
Laravel checks incoming form data against a list of rules before your controller runs, then redirects back with the errors and the old input…
Programming
Splitting a long result set across pages comes down to turning a page number into a LIMIT and an OFFSET. This tutorial counts the…
Programming
A migration defines a table in PHP instead of hand-written SQL, and keeps that definition versioned alongside your code. This tutorial generates one with…
Programming
The Transients API is WordPress's built-in cache for expensive results — a slow query, a remote call, a heavy calculation. Store a value with…
PHP, Laravel, WordPress and jQuery — hands-on coding guides worked through end to end.
53 tutorials →Apache, environments, and running your stack on Windows without the guesswork.
11 tutorials →MySQL queries, PDO, and the everyday tasks of keeping your data in order.
16 tutorials →