Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sara01romao/crud-clientes
https://github.com/sara01romao/crud-clientes
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sara01romao/crud-clientes
- Owner: Sara01romao
- Created: 2024-01-14T02:36:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-01T03:18:44.000Z (about 1 year ago)
- Last Synced: 2024-02-02T02:49:04.914Z (about 1 year ago)
- Language: PHP
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# crud-clientes
![editar-cadastro](https://github.com/Sara01romao/crud-clientes/assets/46323667/54e75c16-cc8b-4d1e-8653-bee5eb98f705)## 💻 Sobre o Projeto
A crud de controle de clientes, objetivo foi praticar o uso do ajax e sweetalert2.
## :rocket: Tecnologias Usadas
Front-end
```
Bootstrap
SweetAlert2
Ajax
```## Back-end
```
PHP
MySQL
```
## 🎲 Banco de dadosTabela Clientes
```
CREATE TABLE `clientes` (
clientes_id int NOT NULL PRIMARY KEY AUTO_INCREMENT,
clientes_nome varchar(255) NOT NULL,
clientes_email varchar(100) NOT NULL,
clientes_contato varchar(11) NOT NULL
) ENGINE=InnoDB;```
Inserir Registros Iniciais
```
INSERT INTO `clientes` (`clientes_id`, `clientes_nome`, `clientes_email`, `clientes_contato`) VALUES
(1, 'Ana Gomes', '[email protected]', '1199999992'),
(2, 'Carlos Daniel', '[email protected]', '2199999993'),
(3, 'Simone liu', '[email protected]', '1199999994'),
(4, 'Lucas Silva', '[email protected]', '1899999995'),
(5, 'Diana Liga', '[email protected]', '1699999996');
```