SETUP INSTRUCTIONS

1. Import the following MySQL table into your database `church_db`:

CREATE TABLE `church_schedule` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `day` varchar(20) NOT NULL,
  `time_slot` varchar(50) NOT NULL,
  `activity` varchar(100) NOT NULL,
  `speaker` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
);

2. Place files in your server directory (e.g., htdocs/church_schedule_admin)

3. To export PDF, ensure you place FPDF library in a folder named `fpdf`.

Download FPDF: http://www.fpdf.org

4. Visit `admin_schedule.php` in browser to manage activities.

5. Use `export_schedule_excel.php` or `export_schedule_pdf.php` to export data.