Synergistic Learning Navigator

Welcome to the future of education. Our AI-powered personal tutor adapts to your unique learning style, helping you master complex subjects through personalized curriculum paths, real-time evaluation, and interactive guidance.

Adaptive Learning
24/7 Availability
Instant Feedback

How AI Transforms Your Learning

Personalized Pathways

No two students are the same. The AI analyzes your performance gaps and tailors the curriculum to focus on what you need to improve.

Interactive Dialogue

Ask questions, get explanations, and engage in Socratic dialogue with an AI that understands context and pedagogical nuance.

Progress Analytics

Visualize your growth. Teachers and students get detailed reports on topic mastery, time spent, and areas requiring attention.

Bridging the Gap in Education

The Synergistic Learning Navigator isn't just a chatbot; it's a comprehensive educational ecosystem. By leveraging Large Language Models (LLMs) tuned for educational content, we provide a safe, hallucination-resistant environment for students.

Teachers can oversee multiple students simultaneously, assigning tasks and viewing AI-generated summaries of student interactions. This allows educators to intervene exactly when needed, maximizing their impact.

Join as a Student
AI Education

Frequently Asked Questions

Is this suitable for all grades?

Currently, the system is optimized for Secondary School curriculums (Form 1-6), focusing on STEM subjects and languages.

Can teachers see my chats?

Yes, purely for educational purposes. Teachers can review transcripts to understand your thought process and provide better guidance.

Is the AI accurate?

We use advanced prompting techniques to ensure high accuracy. However, we always encourage critical thinking and verifying facts with textbooks.

How do I get started?

Simply click the "Register" button, select whether you are a Student or Teacher, and create your free account.

Source Codes & Local Setup

Download the complete source code package and configure the AI Teacher System for your school or personal server.

AI Teacher System Source Code

Download the full PHP source code. Includes the dual Student/Teacher dashboard system, database schemas, and the Google Gemini AI integration logic for the virtual tutor.

Download ZIP
×

System Installation Guide

Running on Localhost

  1. Download aiteacher.zip and extract it into your server directory (e.g., C:/xampp/htdocs/aiteacher/).
  2. Open your browser and navigate to http://localhost/phpmyadmin.
  3. Create a new database named aiteacher_db.
  4. Click Import and upload the database.sql file included in the root folder.
  5. Update your database connection credentials in config.php:
<?php define('DB_SERVER', 'localhost'); define('DB_USERNAME', 'root'); define('DB_PASSWORD', ''); // Default XAMPP has no password define('DB_NAME', 'aiteacher_db'); $mysqli = new mysqli(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_NAME); if($mysqli === false){ die("ERROR: Could not connect. " . $mysqli->connect_error); } ?>

Deploying to Live Server (cPanel)

  1. Login to your cPanel and open File Manager.
  2. Navigate to your domain directory (e.g., public_html/), upload aiteacher.zip, and click Extract.
  3. Go to MySQL Databases in cPanel. Create a new database and a new database user. Link the user to the database with ALL PRIVILEGES.
  4. Go to phpMyAdmin, select your new database, and import database.sql.
  5. Edit the config.php file via File Manager with your live credentials:
<?php define('DB_SERVER', 'localhost'); define('DB_USERNAME', 'yourcpaneluser_dbuser'); define('DB_PASSWORD', 'Your_Strong_Password_123'); define('DB_NAME', 'yourcpaneluser_aiteacher_db'); $mysqli = new mysqli(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_NAME); ?>

Configuring Gemini AI Analytics

To enable the Synergistic Learning Navigator (the AI Tutor), you must provide a Google Gemini API Key.

  1. Register or login at Google AI Studio.
  2. Click Get API key and generate a new key.
  3. Open the ai_config.php file in your downloaded source code and paste your key:
<?php // Paste your Google Gemini API Key here define('GEMINI_API_KEY', 'AIzaSyYourGeneratedGeminiApiKeyHere'); ?>