Category: Php
MySql Interaction from PHP
MySQL Interaction from PHP 1️⃣ Connecting to MySQL Using MySQLi (Procedural) php CopyEdit $conn =…
MySql Table Interaction
MySQL Table Interaction: CRUD Operations 1️⃣ Create: Creating a Table sql CopyEdit CREATE TABLE employees…
Working with File Systems
Why Work with the File System? You can: Store data without a database Handle uploads…
Sessions and cookies
What Are Cookies? Cookies are small files stored in the user’s browser. Used to remember…
Working with Forms
Working with Forms in PHP Forms are how users send data to your server (e.g.,…
Classes and objects
What are Classes and Objects? A class is like a blueprint for creating objects. An…
String and Date Functions
String Functions in PHP String functions help you manipulate, analyze, and transform text. Common String…
Types of Functions (User-Defined and System-Defined)
Types of Functions in PHP ✅ 1. User-Defined Functions These are functions you create yourself…