📝 Example: Create User (Signup)
Request:
curl -X POST http://localhost/hospital_pro/backend/api/users.php \
-H "Content-Type: application/json" \
-d '{
"name": "John Doe",
"email": "john@example.com",
"phone": "0300-1234567",
"password": "password123",
"role": "client",
"status": "active"
}'
Response:
{
"success": true,
"message": "User created successfully",
"user_id": 1
}