Skip to content

A simple app for keeping track of time spent on tasks. Written in PHP.

Notifications You must be signed in to change notification settings

Brayn7/taskTracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Time Sheet

Instuctions

  1. CREATE a DATABASE in POSTGRESQL.

    •  CREATE DATABASE <database name> ;
      
      
  2. CREATE USER WITH PASSWORD

    •  CREATE USER <username> WITH PASSWORD <password> ;
      
      
  3. CREATE a TABLE with COLUMNS

    •  CREATE TABLE <table name> (
          id int NOT NULL,
          task\_name varchar(50) NOT NULL,
          clock\_in\_time NOW(),
          clock\_out\_time ,
          task\_date CURRENT\_DATE,
       );
      
      
    
    
    

instructions in progress...

About

A simple app for keeping track of time spent on tasks. Written in PHP.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published