GithubHelp home page GithubHelp logo

vocab_tracker's Introduction

What is Vocab Tracker?

VocabTracker is a simple PHP+MySQL application leveraging on CRUD operations.

For every new vocabulary that I come to learn of once in a blue moon, it would be nice to store it in an online platform that allows me to focus on learning and reviewing the terms, and not just refer to the Notes App which stores everything else (it's kind of messy). So I decided to make this vocabulary tracker application designed for this sole purpose!

How to start?

1. Set up your database in your SQL server.
CREATE DATABASE vocab;

CREATE USER '[any user name]'@'localhost' IDENTIFIED BY '[any password]';
GRANT ALL ON vocab.* TO '[above user name]'@'localhost';
CREATE USER '[above user name]'@'127.0.0.1' IDENTIFIED BY '[above password]';
GRANT ALL ON vocab.* TO '[above user name]'@'127.0.0.1';
  1. Set up connection to database and create table. See connection.php on how to do this. For Windows, the port number is 3306.
USE entries; 
CREATE TABLE IF NOT EXISTS entries (
  entry_id INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT,
  word VARCHAR(255),
  entry_date DATE,
  meaning TEXT,
  sentence TEXT
)
  1. Clone the repository or download the files locally into your xampp/htdocs folder.

  2. Launch the application via localhost

Video Demo on navigating application

View of vocabulary records on index.php

Youtube Video: Vocab Tracker PHP application demo

vocab_tracker's People

Contributors

phyosandarwin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.