PHP
Server-side scripting with PHP: forms, databases, and web application fundamentals.
PHP and MySQL with PDO
Feb 02, 2025PDO (PHP Data Objects) is the modern, secure way to connect PHP to MySQL. It supports prepared statements which eliminate SQL injection vulnerabilities.
Handling HTML Forms with PHP
Jan 26, 2025Processing user input is at the heart of web development. PHP provides the $_GET and $_POST superglobals to access form data, but you must sanitise everything.
PHP Functions
Jan 19, 2025Functions let you name and reuse a block of code. PHP comes with thousands of built-in functions and makes it easy to define your own.
PHP Variables and Data Types
Jan 12, 2025PHP is dynamically typed: variables do not need a declared type and can change type at runtime. Understanding this behaviour prevents many common bugs.
Introduction to PHP
Jan 05, 2025PHP is a server-side scripting language embedded in HTML. It powers a large portion of the web and is the engine behind WordPress, Drupal, and Laravel.