├── .gitattributes ├── LICENSE ├── README.md ├── README.pdf ├── actualizar_cliente.php ├── clientes.php ├── creditos.php ├── css └── bootstrap.min.css ├── dashboard.php ├── dashboard_cliente.php ├── eliminar_cliente.php ├── encabezado.php ├── esquema.sql ├── estilo.css ├── formulario_agregar_cliente.php ├── formulario_editar_cliente.php ├── funciones.php ├── guardar_cliente.php ├── guardar_venta.php ├── img ├── customer.png ├── date.png ├── meeting.png ├── money.png ├── sales.png └── target.png ├── index.php ├── js └── Chart.min.js ├── pie.php └── ventas.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/README.pdf -------------------------------------------------------------------------------- /actualizar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/actualizar_cliente.php -------------------------------------------------------------------------------- /clientes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/clientes.php -------------------------------------------------------------------------------- /creditos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/creditos.php -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/dashboard.php -------------------------------------------------------------------------------- /dashboard_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/dashboard_cliente.php -------------------------------------------------------------------------------- /eliminar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/eliminar_cliente.php -------------------------------------------------------------------------------- /encabezado.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/encabezado.php -------------------------------------------------------------------------------- /esquema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/esquema.sql -------------------------------------------------------------------------------- /estilo.css: -------------------------------------------------------------------------------- 1 | body{ 2 | padding-top: 90px; 3 | } -------------------------------------------------------------------------------- /formulario_agregar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/formulario_agregar_cliente.php -------------------------------------------------------------------------------- /formulario_editar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/formulario_editar_cliente.php -------------------------------------------------------------------------------- /funciones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/funciones.php -------------------------------------------------------------------------------- /guardar_cliente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/guardar_cliente.php -------------------------------------------------------------------------------- /guardar_venta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/guardar_venta.php -------------------------------------------------------------------------------- /img/customer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/img/customer.png -------------------------------------------------------------------------------- /img/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/img/date.png -------------------------------------------------------------------------------- /img/meeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/img/meeting.png -------------------------------------------------------------------------------- /img/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/img/money.png -------------------------------------------------------------------------------- /img/sales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/img/sales.png -------------------------------------------------------------------------------- /img/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/img/target.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/index.php -------------------------------------------------------------------------------- /js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/js/Chart.min.js -------------------------------------------------------------------------------- /pie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/pie.php -------------------------------------------------------------------------------- /ventas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parzibyte/crm-php-mysql/HEAD/ventas.php --------------------------------------------------------------------------------