Coder Social home page Coder Social logo

okproject's Introduction

okproject

college website project

okproject's People

Contributors

vistuvis avatar thu-nguyen-1001 avatar

Watchers

James Cloos avatar  avatar

okproject's Issues

.conf files redirection not working

After recreating the virtual directory into
var/www/okproject.ca/public_html
and cloning this repository into that folder, the .conf files are failing to redirect properly and need to be fixed.

The site will be down in the meantime.

Build sql Database

Created okprojectDB

Created table with the following structures:
CREATE TABLE Members(
memID int NOT NULL AUTO_INCREMENT,
lName varchar(30),
fName varchar(30),
email varchar(50) NOT NULL,
userName varchar(30) NOT NULL,
password char(60) NOT NULL,
PRIMARY KEY (memID));

CREATE TABLE Pets(
petID int NOT NULL AUTO_INCREMENT,
memID int NOT NULL,
petName VARCHAR(30) NOT NULL,
happiness TINYINT unsigned,
health TINYINT unsigned,
hunger TINYINT unsigned,
imageLocation VARCHAR(100),
PRIMARY KEY (petID),
FOREIGN KEY (memID) REFERENCES Members(memID));

pet care page

  • accessible after user account is logged in
  • pet from account pulled from database
  • loads info into javascript
  • allows user to interact with pet
  • saves pet information somehow

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.