TASK 8 – REST API (PHP)
=========================

REQUIREMENTS:
- PHP 8+
- MySQL
- Postman (for testing)

SETUP STEPS:
1. Create database rest_api_app
2. Import database.sql
3. Place folder inside htdocs
4. Update DB credentials in config/db.php
5. Test APIs using Postman

BASE URL:
http://localhost/task-8-rest-api/api/users.php

METHODS:
GET    -> Fetch users
POST   -> Create user
PUT    -> Update user
DELETE -> Delete user

INTERVIEW LINE:
'I designed REST APIs using PHP and PDO with JSON responses.'
