├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── index.php ├── style.css ├── tasks.sql └── template.twig /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # php-database-crud -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/index.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/style.css -------------------------------------------------------------------------------- /tasks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/tasks.sql -------------------------------------------------------------------------------- /template.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectorbenitez/php-database-crud/HEAD/template.twig --------------------------------------------------------------------------------