๐น 1. Simple Login System ๐ง Focus On: HTML form $_POST Password hashing & password_verify() Sessions ( session_start() ) ✅ Must Know: How to validate and authenticate user credentials. ๐น 2. User Registration with Validation ๐ง Focus On: Form submission Email validation Password match Insert into MySQL ✅ Must Know: Email format check using filter_var() , required fields, hash password with password_hash() . ๐น 3. CRUD Application (Create, Read, Update, Delete) ๐ง Focus On: MySQLi connection Insert, select, update, delete queries URL query string for edit/delete actions ✅ Must Know: Build full CRUD using plain PHP & MySQL (with mysqli_* functions or PDO). ๐น 4. File Upload Script (Image Upload) ๐ง Focus On: File form with enctype="multipart/form-data" Validate file type/size Move file to uploads/ folder ✅ Must Know: Handle $_FILES , use move_uploaded_file() , validate extension and size. ๐น 5. F...
Comments
Post a Comment