Event Calendar - Minimal PHP Project (v2)
-----------------------------------------
This package contains a minimal PHP event calendar scaffold (admin, public, api).
Edit config/db.php to set your DB credentials, import SQL from sql/, and upload to your webserver.

Files included:
- config/db.php
- admin/login.php, dashboard.php, add_event.php, save_event.php, list_events.php, delete_event.php, logout.php
- api/get_events.php, get_event.php
- public/index.php, big_calendar.php, event_list.php
- assets/js/events.js
- assets/css/style.css
- uploads/events/ (writable directory)
- sql/ (contains your uploaded SQL if present, otherwise a placeholder)

Instructions:
1. Extract to webroot (e.g., public_html/events/)
2. Import SQL found in sql/ using phpMyAdmin or mysql CLI
3. Update config/db.php with DB credentials
4. Ensure uploads/events/ is writable (chmod 755 or 775)
5. Browse public/big_calendar.php and public/event_list.php

Security: This is a demo scaffold. Add proper auth, CSRF protection, input validation, and file sanitization for production.
