MaskyS / Home-book-lending

Know to which friend you lended books to ! A simple system using PHP and MySQL to fireup on your local machine !

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Home-book-lending

(for edu - see issues) Know to which friend you lended books to ! A simple system using PHP and MySQL to fireup on your local machine !

Requirements

CSS rules

Todo

  • menupage
  • operations page

Quickstart

PHP > php -S localhost:8000 SQL create table in db named 'books_lending'

CREATE TABLE books (
    ID int NOT NULL auto_increment,
    name varchar(255) NOT NULL,
    isbn varchar(255),
    friend varchar(255),
    PRIMARY KEY (ID)
);

Contacts

Target | Time

  • 25 02 HTML ready
  • 05 03 storage logic implemented
  • 12 03 ready

Environment : Home PC

as localhost use is intended, don't use the project on a public network as per php requirements "This web server was designed to aid application development. It may also be useful for testing purposes or for application demonstrations that are run in controlled environments. It is not intended to be a full-featured web server. It should not be used on a public network."

About

Know to which friend you lended books to ! A simple system using PHP and MySQL to fireup on your local machine !

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:PHP 68.9%Language:CSS 15.7%Language:HTML 15.4%