๐Ÿ“ Category

Web Development Posts

Browse all posts filed under Web Development.

26Posts
2Categories
254Total Views
PHP File Handling: Read, Write and Delete Files๐Ÿ“ Web Development

PHP File Handling: Read, Write and Delete Files

How PHP reads and writes files on the server โ€” file_put_contents, fopen, appending, reading line by line, and deleting โ€” each with a runnable example.

web-development
Read More โ†’
PHP MySQLi: Connect and Query Without PDO๐Ÿ“ Web Development

PHP MySQLi: Connect and Query Without PDO

The other way PHP talks to a database โ€” plain functions instead of objects. Connect, read, insert, update and delete, with no classes required.

web-development
Read More โ†’
PHP Comparison Operators: ==, === and the Type Trap๐Ÿ“ Web Development

PHP Comparison Operators: ==, === and the Type Trap

All ten of them, the == versus === rule that catches everyone, and the PHP 8 change that most tutorials on the web still get wrong.

web-development
Read More โ†’
PHP Operator Precedence: What Runs First and Why๐Ÿ“ Web Development

PHP Operator Precedence: What Runs First and Why

PHP does not read your code left to right. It ranks every operator in the line and starts at the top. Here is the full table and the three rows that bite.

web-development
Read More โ†’
PHP Logical Operators: and, or, && and || Explained๐Ÿ“ Web Development

PHP Logical Operators: and, or, && and || Explained

PHP has two sets of logical operators โ€” the symbols and the words. They look interchangeable and they are not. Here is the difference, and when each one is right.

web-development
Read More โ†’
PHP Sessions: Login State and $_SESSION Explained๐Ÿ“ Web Development

PHP Sessions: Login State and $_SESSION Explained

Make your site remember who is visiting. PHP sessions explained: session_start, storing and reading $_SESSION, a small login gate, protecting a page, and logging out properly.

web-development
Read More โ†’
PHP MySQL: Connect, Query and Insert Safely๐Ÿ“ Web Development

PHP MySQL: Connect, Query and Insert Safely

Make your data survive the script. PHP MySQL explained: connecting with PDO, reading rows, prepared statements that stop SQL injection, and updating or deleting safely.

web-development
Read More โ†’
PHP Forms: GET, POST and Handling User Input๐Ÿ“ Web Development

PHP Forms: GET, POST and Handling User Input

Read what your visitors type. PHP forms explained: GET vs POST, reading $_POST safely, checking required fields, validating email, and escaping output with htmlspecialchars.

web-development
Read More โ†’
PHP Strings: Quotes, Functions and Formatting๐Ÿ“ Web Development

PHP Strings: Quotes, Functions and Formatting

Most of what a page shows is text. PHP strings explained: single vs double quotes, joining, length and case, search and replace, trimming, and explode with implode.

web-development
Read More โ†’
๐Ÿ“ Web Development Posts โ€” Page 2 | Flow's Blog