All Projects → RobbTheBruce → crud-mvc-php

RobbTheBruce / crud-mvc-php

Licence: other
Projeto de aplicação simples em php utilizando autoload e PDO.

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to crud-mvc-php

Nukeviet
NukeViet CMS is multi Content Management System. NukeViet CMS is the 1st open source content management system in Vietnam. NukeViet was awarded the Vietnam Talent 2011, the Ministry of Education and Training Vietnam officially encouraged to use.
Stars: ✭ 113 (+841.67%)
Mutual labels:  pdo
Zend Diagnostics
Universal set of diagnostic tests for PHP applications.
Stars: ✭ 192 (+1500%)
Mutual labels:  pdo
CircleBilling
Official release of CircleBilling
Stars: ✭ 28 (+133.33%)
Mutual labels:  pdo
Basicdb
PDO ile geliştirilmiş kullanımı kolay veritabanı sınıfıdır.
Stars: ✭ 127 (+958.33%)
Mutual labels:  pdo
Company Website Pro
现代公司企业官网以及电子商务产品网站
Stars: ✭ 172 (+1333.33%)
Mutual labels:  pdo
Php Pdo Mysql Class
A PHP MySQL PDO class similar to the the Python MySQLdb, which supports iterator and parameter binding when using "WHERE IN" statement.
Stars: ✭ 213 (+1675%)
Mutual labels:  pdo
Flexicms
Flexible site management system Flexi CMS
Stars: ✭ 61 (+408.33%)
Mutual labels:  pdo
Aura.SqlSchema
Independent schema discovery tools for MySQL, PostgreSQL, SQLite, and Microsoft SQL Server.
Stars: ✭ 39 (+225%)
Mutual labels:  pdo
Pdo
Connecting to MySQL in PHP using PDO.
Stars: ✭ 187 (+1458.33%)
Mutual labels:  pdo
pdo-mysql-login-register
Simple PHP Login & Register using PDO MySQL
Stars: ✭ 37 (+208.33%)
Mutual labels:  pdo
Zebra session
A drop-in replacement for PHP's default session handler which stores session data in a MySQL database, providing both better performance and better security and protection against session fixation and session hijacking
Stars: ✭ 133 (+1008.33%)
Mutual labels:  pdo
Phive Queue
$queue->push('I can be popped off after', '10 minutes');
Stars: ✭ 161 (+1241.67%)
Mutual labels:  pdo
Database
💾 A database layer with a familiar PDO-like API but much more powerful. Building queries, advanced joins, drivers for MySQL, PostgreSQL, SQLite, MS SQL Server and Oracle.
Stars: ✭ 251 (+1991.67%)
Mutual labels:  pdo
Aura.auth
Provides a unified interface to local and remote authentication systems.
Stars: ✭ 121 (+908.33%)
Mutual labels:  pdo
WoWSimpleRegistration
Simple Registration page for TrinityCore/AzerothCore/AshamaneCore/CMangos
Stars: ✭ 121 (+908.33%)
Mutual labels:  pdo
Swpdo
Swoole Coroutine SQL component like PDO | 0成本迁移PDO到Swoole高性能协程客户端
Stars: ✭ 64 (+433.33%)
Mutual labels:  pdo
Hydrahon
🐉 Fast & standalone PHP MySQL Query Builder library.
Stars: ✭ 194 (+1516.67%)
Mutual labels:  pdo
spe
A series of PHP8 examples based around a super simple MVC framework (WIP)
Stars: ✭ 14 (+16.67%)
Mutual labels:  pdo
apostilas
Apostilas sobre diversos assuntos: PHP, PDO, MySQL, PHPOO, MVC, mobile, scratch, git, github, docker, vps, alpine linux, segurança na wev, servidores, etc
Stars: ✭ 49 (+308.33%)
Mutual labels:  pdo
mysqly
Full-featured opensource small-overhead PHP data framework for Mysql built for fast and efficient development
Stars: ✭ 18 (+50%)
Mutual labels:  pdo

CRUD PHP

Projeto de aplicação simples em php utilizando autoload e PDO.

Instação

Executar o comando do composer na pasta do projeto:

$ composer update

(Obs):. Caso ouver problemas com o plugin de rotas basta remover ele e baixar novamente: https://github.com/leeoniya/Route66.php

Configurar os dados de acesso ao banco no arquivo app/config/database.php

Sql para criação da tabela:

CREATE TABLE `cliente` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `nome` varchar(45) DEFAULT NULL,
  `cpf` varchar(45) DEFAULT NULL,
  `data_nascimento` varchar(45) DEFAULT NULL,
  `endereco` varchar(45) DEFAULT NULL,
  `bairro` varchar(45) DEFAULT NULL,
  `cidade` varchar(45) DEFAULT NULL,
  `cep` varchar(45) DEFAULT NULL,
  `estado` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

Execute o comando abaixo na pasta do index para iniciar o servidor:

$ php -S localhost:8000
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].