Skip to content

English Learning Platform 🌟 β€” A platform to expand vocabulary, improve sentences, and enhance reading skills. Users can add words, sentences, and texts, and test their knowledge. Materials are downloadable as PDFs. πŸš€

Notifications You must be signed in to change notification settings

Iqbolshoh/website-english-platform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

83 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

English Learning Platform

This is an English learning platform designed to help users improve their vocabulary, sentence structure, and reading skills. The platform allows users to register, add their own vocabulary, sentences, and texts, and also provides exercises to enhance learning.

Features

  • User Registration & Login: Users can sign up, log in, and manage their profiles.
  • Vocabulary: Users can add new words along with their translations and definitions.
  • Sentences: Users can create sentences using the words they added and add translations.
  • Texts: Users can upload and translate texts for reading practice.
  • Exercises:
    • Vocabulary Test: Tests where words are scrambled, and users must choose the correct answer from four options.
    • Sentence Test: Users reorder scrambled sentences to form a grammatically correct sentence.
  • Download PDFs: Users can download their vocabulary, sentences, and texts in PDF format.
  • Search: A search function to find words, sentences, and texts easily.
  • Favorite Words, Sentences, and Texts: Users can save their favorite words, sentences, and texts.

Pages

Home Page

Home Page

  • The home page welcomes users to the platform and provides navigation links to other sections.

Dictionary Page

Dictionary Page

  • Users can add and view vocabulary words along with their translations and definitions.

Sentences Page

Sentences Page

  • Users can create and view sentences using the vocabulary words, including translations.

Texts Page

Texts Page

  • Users can upload and read texts, and add translations for practice.

Exercises Page

Exercises Page

  • Contains tests for vocabulary and sentences to help users practice and improve their English.

Settings Page

Settings Page

  • Users can manage their account settings and preferences.

Installation

  1. Clone the repository:
git clone https://github.com/Iqbolshoh/website-english-platform.git
  1. Navigate to the project directory:
cd website-english-platform
  1. Install the necessary dependencies (if applicable):
npm install
  1. Set up the database:
  • Create a database called english.
  • Import the provided database.sql file:
CREATE DATABASE english;

USE english;

CREATE TABLE users (
    id INT AUTO_INCREMENT PRIMARY KEY,
    fullname VARCHAR(255) NULL,
    email VARCHAR(255) NOT NULL UNIQUE,
    username VARCHAR(150) NOT NULL UNIQUE,
    password VARCHAR(255) NOT NULL,
    profile_image VARCHAR(255) DEFAULT 'default.png',
    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

-- (Add the rest of your database creation queries here)
  1. Configure config.php with your database credentials:
public function __construct()
    {
        $servername = "localhost";
        $username = "milliyto_shop";
        $password = "X?t&e#iF3Fc*";
        $dbname = "milliyto_english";

        $this->conn = new mysqli($servername, $username, $password, $dbname);

        if ($this->conn->connect_error) {
            die("Connection failed: " . $this->conn->connect_error);
        }
    }
  1. Start the server:
  • If you're using XAMPP or MAMP, place the project folder in the htdocs folder.
  • Access the platform in your browser by navigating to http://localhost/website-english-platform.

Usage

  1. Register and Login to start using the platform.
  2. Add words, sentences, and texts.
  3. Participate in exercises to improve your English.
  4. Download your learning materials as PDFs.

Project Structure

  • css/: Contains the CSS files for styling the platform.
  • js/: Contains JavaScript files for the platform's functionality.
  • config.php: Database configuration file.
  • database.sql: SQL file for creating the necessary tables.
  • index.php: Main entry point for the platform.
  • exercise/: Contains the files for Vocabulary and Sentence tests.

Contribution

Feel free to contribute by forking the repository and creating pull requests. For major changes, please open an issue first to discuss what you would like to change.

Connect with Me

I love connecting with new people and exploring new opportunities. Feel free to reach out to me through any of the platforms below:

GitHub Telegram LinkedIn instagram WhatsApp Twitter Email

About

English Learning Platform 🌟 β€” A platform to expand vocabulary, improve sentences, and enhance reading skills. Users can add words, sentences, and texts, and test their knowledge. Materials are downloadable as PDFs. πŸš€

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published