Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lecheveucodeur/tickets_tracker
Training with PHP - Basic ticket management tools.
https://github.com/lecheveucodeur/tickets_tracker
php
Last synced: about 2 months ago
JSON representation
Training with PHP - Basic ticket management tools.
- Host: GitHub
- URL: https://github.com/lecheveucodeur/tickets_tracker
- Owner: leCheveuCodeur
- Created: 2020-09-28T12:36:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T19:21:07.000Z (over 4 years ago)
- Last Synced: 2023-08-24T14:44:14.330Z (over 1 year ago)
- Topics: php
- Language: PHP
- Homepage:
- Size: 667 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tickets_tracker
## Description
Training with PHP - Basic tools for ticket management
## How it work
![tickets_tracker](./art/tickets_tracker.gif)
## Prerequisites
You'll need a working text editor to read this document.
```
VS Code or Atom would work just fine.....
```## Init DB
```
DROP TABLE IF EXISTS `tickets`;
CREATE TABLE IF NOT EXISTS `tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`dating` date NOT NULL,
`titled` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`amount` int(11) NOT NULL,
UNIQUE KEY `id` (`id`),
UNIQUE KEY `date` (`dating`)
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
```## Built with
- [HTML5](https://developer.mozilla.org/es/docs/HTML/HTML5)
- [CSS3](https://developer.mozilla.org/en-US/docs/Archive/CSS3)
- [PHP](https://www.php.net/)
- [MySQL](https://www.mysql.com/fr/)