Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sara01romao/crud-clientes


https://github.com/sara01romao/crud-clientes

Last synced: 4 days ago
JSON representation

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 dados

Tabela 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');
```