Web Development Tutorials
//

Category: Programming

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

Programming

Schedule Recurring Tasks With WP-Cron

Schedule recurring tasks with WP-Cron, WordPress's built-in scheduler. This tutorial hooks a task to a custom action, adds a five-minute interval through cron_schedules, schedules…

August 11, 2026

Programming

Sort and Filter Arrays in PHP

Sort and filter arrays in PHP with the functions built for the job: sort and asort for flat lists, usort to order rows by…

August 10, 2026

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

Programming

Validate a Form in Laravel

Laravel checks incoming form data against a list of rules before your controller runs, then redirects back with the errors and the old input…

August 8, 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