├── README.md ├── ejemplos ├── 01_SalidaPorPantallaYVariables │ ├── holaMundo.php │ ├── holaMundo02.php │ ├── holaMundo03.php │ ├── variables01.php │ ├── variables02.php │ └── variables03.php ├── 02_RecogidaDeDatosPorTeclado │ ├── saluda │ │ ├── index.php │ │ └── saluda.php │ └── suma │ │ ├── index.php │ │ └── suma.php ├── 03_SentenciaCondicional │ ├── condicionalAbreviado.php │ ├── ejemploCondicion.php │ ├── ejemploSwitch.php │ ├── igualdad.php │ └── operadoresLogicos.php ├── 04_Bucles │ ├── AdivinaElNumero │ │ ├── adivina.php │ │ └── index.php │ ├── ejemploDoWhile.php │ ├── ejemploFor.php │ └── ejemploWhile.php ├── 05_Arrays │ ├── arrayAsociativo01.php │ ├── arrayAsociativo02.php │ ├── arrayAsociativoConCorchetes.php │ ├── arrayBidimensional01.php │ ├── arrayConCorchetes.php │ ├── ejemploForeach.php │ ├── ejemploSplFixedArray.php │ ├── recogidaDeDatosParaArray.php │ ├── temperaturas01.php │ ├── temperaturas02.php │ └── valoresAleatorios.php ├── 06_Funciones │ ├── matematicas.php │ ├── numeroPrimo.php │ ├── numeroPrimo2.php │ ├── numeroPrimoConFuncion.php │ └── simulacionDeSobrecarga │ │ ├── funciones.php │ │ └── index.php ├── 07_SesionesYCookies │ ├── actorYActrizFavoritos.php │ ├── contadorDeVisitas.php │ └── ejemploSesion.php ├── 08_AccesoABasesDeDatos │ ├── PDO │ │ ├── altaClienteAccion.php │ │ ├── altaClienteFormulario.php │ │ ├── conexionBDpdo.php │ │ └── listadopdo.php │ ├── banco.sql │ ├── mysql │ │ ├── busqueda.php │ │ ├── conexionBD.php │ │ ├── consulta.php │ │ └── listadoCompleto.php │ └── mysqli │ │ ├── conexionBDmysqli.php │ │ ├── consultamysqli.php │ │ └── listadoCompletomysqli.php ├── 09_PHPOrientadoAObjetos │ ├── EjemploAnimal │ │ ├── Animal.php │ │ ├── Ave.php │ │ ├── Gato.php │ │ ├── Pinguino.php │ │ └── index.php │ ├── EjemploCoche │ │ ├── Coche.php │ │ └── index.php │ ├── EjemploGato │ │ ├── Gato.php │ │ └── index.php │ ├── PersonaV01 │ │ ├── Persona.php │ │ └── index.php │ ├── PersonaV02 │ │ ├── Persona.php │ │ └── index.php │ ├── PersonaV03 │ │ ├── Persona.php │ │ └── index.php │ ├── PersonaV04 │ │ ├── Persona.php │ │ └── index.php │ └── SerializacionDeObjetos │ │ ├── MonstruoDeLasGalletas.php │ │ └── index.php ├── 10_Modelo_Vista_Controlador │ └── OfertasPizzeriaBasico │ │ ├── Controller │ │ ├── borraOferta.php │ │ ├── grabaOferta.php │ │ ├── index.php │ │ └── nuevaOferta.php │ │ ├── Model │ │ ├── Oferta.php │ │ ├── PizzeriaDB.php │ │ └── oferta.sql │ │ ├── View │ │ ├── formularioOferta.php │ │ ├── images │ │ │ ├── pizza1.jpg │ │ │ ├── pizza2.jpg │ │ │ ├── pizza3.jpg │ │ │ ├── pizza4.jpg │ │ │ ├── pizzasanok.jpg │ │ │ ├── trozopizza.jpg │ │ │ └── xbox.jpg │ │ └── listado.php │ │ └── index.php ├── 11_Twig │ ├── DatosDeUsuarioTwig01 │ │ ├── index.php │ │ └── templates │ │ │ └── infoUsuario.html.twig │ ├── DatosDeUsuarioTwig02 │ │ ├── index.php │ │ └── templates │ │ │ └── infoUsuario.html.twig │ ├── DatosDeUsuarioTwig03 │ │ ├── index.php │ │ └── templates │ │ │ └── infoUsuario.html.twig │ ├── HerenciaTwig │ │ ├── Controller │ │ │ ├── asignaturas.php │ │ │ ├── contacto.php │ │ │ ├── index.php │ │ │ ├── sobre.php │ │ │ └── twig │ │ │ │ └── leeme.txt │ │ ├── View │ │ │ ├── asignaturas.html.twig │ │ │ ├── base.html.twig │ │ │ ├── contacto.html.twig │ │ │ ├── images │ │ │ │ ├── gallery_1.gif │ │ │ │ ├── gallery_2.gif │ │ │ │ ├── gallery_3.gif │ │ │ │ ├── gallery_4.gif │ │ │ │ ├── gallery_5.gif │ │ │ │ ├── gallery_6.gif │ │ │ │ ├── header_bg.gif │ │ │ │ ├── img_1.jpg │ │ │ │ ├── img_2.jpg │ │ │ │ ├── img_3.jpg │ │ │ │ ├── img_main.jpg │ │ │ │ ├── l_bg.gif │ │ │ │ ├── l_menu.gif │ │ │ │ ├── logo.gif │ │ │ │ ├── r_bg.gif │ │ │ │ ├── r_menu.gif │ │ │ │ ├── search.gif │ │ │ │ └── search_bg.gif │ │ │ ├── js │ │ │ │ ├── arial.js │ │ │ │ ├── cuf_run.js │ │ │ │ ├── cufon-yui.js │ │ │ │ └── jquery.js │ │ │ ├── principal.html.twig │ │ │ ├── sobre.html.twig │ │ │ └── style.css │ │ └── index.php │ ├── HolaMundoTwig │ │ ├── index.php │ │ └── templates │ │ │ └── hola.html.twig │ ├── SaludaTwig │ │ ├── index.php │ │ └── templates │ │ │ └── saluda.html.twig │ ├── SumaTwig01 │ │ ├── Controller │ │ │ ├── index.php │ │ │ └── twig │ │ │ │ └── leeme.txt │ │ ├── View │ │ │ ├── formulario.html.twig │ │ │ └── resultado.html.twig │ │ └── index.php │ ├── SumaTwig02 │ │ ├── Controller │ │ │ ├── index.php │ │ │ └── twig │ │ │ │ └── leeme.txt │ │ ├── View │ │ │ └── formulario.html.twig │ │ └── index.php │ └── orden_de_los_ejemplos.md └── 12_Servicios_Web │ ├── ConsumidorDeServiciosWeb │ └── elTiempoEnMalaga.php │ └── ProveedorDeServiciosWeb │ ├── datos_empleados.csv │ └── listadoEmpleados.php └── soluciones ├── 01_SalidaPorPantallaYVariables ├── 01.php ├── 02.php ├── 03.php ├── 04.php ├── 05.php ├── 06.php ├── 07.php ├── 08.php ├── 09.php ├── 10.php ├── 11.php ├── 12.php ├── bgblanco.png ├── bgblue2.png ├── bglightblue.png ├── default.css └── index.php ├── 02_RecogidaDeDatosPorTeclado ├── 01.php ├── 01result.php ├── 02.php ├── 02result.php ├── 03.php ├── 03result.php ├── 04.php ├── 04result.php ├── 05.php ├── 05result.php ├── 06.php ├── 06result.php ├── 07.php ├── 07result.php ├── 08.php ├── 08result.php ├── 09.php ├── 09result.php ├── 10.php ├── 10result.php ├── 11.php ├── 11result.php ├── bgblanco.png ├── bgblue2.png ├── bglightblue.png ├── default.css └── index.php ├── 03_SentenciaCondicional ├── 01.php ├── 01result.php ├── 02.php ├── 02result.php ├── 03.php ├── 03result.php ├── 04.php ├── 04result.php ├── 05.php ├── 05result.php ├── 06.php ├── 06result.php ├── 07.php ├── 07result.php ├── 08.php ├── 08result.php ├── 09.php ├── 09result.php ├── 10.php ├── 10result.php ├── 11.php ├── 11result.php ├── 12.php ├── 12result.php ├── 13.php ├── 13result.php ├── 14.php ├── 14result.php ├── 15.php ├── 15result.php ├── 16.php ├── 16result.php ├── 17.php ├── 17result.php ├── 18.php ├── 18result.php ├── 19.php ├── 19result.php ├── bgblanco.png ├── bgblue2.png ├── bglightblue.png ├── default.css ├── index.php └── test_infidelidad.txt ├── 04_Bucles ├── 01.php ├── 02.php ├── 03.php ├── 04.php ├── 05.php ├── 06.php ├── 07.php ├── 08.php ├── 08result.php ├── 09.php ├── 09result.php ├── 10.php ├── 11.php ├── 12.php ├── 13.php ├── 14.php ├── 15.php ├── 16.php ├── 17.php ├── 18.php ├── 19.php ├── 20.php ├── 21.php ├── 22.php ├── 23.php ├── 24.php ├── 25.php ├── 26.php ├── 27.php ├── 28.php ├── 29.php ├── bgblanco.png ├── bgblue2.png ├── bglightblue.png ├── blanco.png ├── bolita.png ├── default.css ├── index.php ├── ladrillo.png ├── pina.png ├── pinguino.png └── sol.png ├── 05_Arrays ├── 01.php ├── 02.php ├── 03.php ├── 04.php ├── 05.php ├── 06.php ├── 07.php ├── 08.php ├── 09.php ├── 10.php ├── 11.php ├── 12.php ├── 13.php ├── 14.php ├── alfil.png ├── alfilsemitransparente.png ├── bgblanco.png ├── bgblanco2.png ├── bgblue.png ├── bgblue2.png ├── bggreen.png ├── bglightblue.png ├── default.css ├── index.php ├── pagina.php └── vacio.png ├── 07_SesionesYCookies ├── 01.php ├── 02.php ├── 03.php ├── 04.php ├── 05.php ├── 06.php ├── 06_detalle.php ├── 07.php ├── 08.php ├── 08_admin_palabras.php ├── 08_alta_palabra.php ├── 08_modificacion_palabras.php ├── 09.php ├── 09_admin_productos.php ├── 09_alta_producto.php ├── 09_detalle.php ├── 09_grabaCookies.php ├── 09_modificacion_producto.php ├── css │ ├── bgblanco.png │ ├── bgblue2.png │ ├── bglightblue.png │ └── default.css ├── img │ ├── deltadolce.jpg │ ├── montblanc.jpg │ ├── montegrappa.jpg │ ├── parkerduo.jpg │ ├── pelikan.jpg │ ├── visconti.jpg │ └── waterman.jpg ├── index.php ├── limpiaPost.php └── pagina.php ├── 08_AccesoABasesDeDatos ├── 01.php ├── 01_modificar_cliente.php ├── 02.php ├── 02_modificar_cliente.php ├── 03.php ├── 03_detalle.php ├── 04.php ├── 04_borrar_articulo_confirmacion.php ├── 04_entrada_articulo.php ├── 04_modificar_articulo.php ├── 04_salida_articulo.php ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── deltadolce.jpg │ ├── montblanc.jpg │ ├── montegrappa.jpg │ ├── parkerduo.jpg │ ├── pelikan.jpg │ ├── visconti.jpg │ └── waterman.jpg ├── index.php ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-2.1.3.min.js │ └── npm.js ├── pagina.php └── sql │ ├── banco.sql │ ├── gestisimal.sql │ └── tienda.sql └── 09_PHPOrientadoAObjetos ├── Ejer01Animales ├── Animal.php ├── Ave.php ├── Canario.php ├── Gato.php ├── Lagarto.php ├── Mamifero.php ├── Perro.php ├── Pinguino.php └── index.php ├── Ejer02Vehiculos ├── Bicicleta.php ├── Coche.php ├── Vehiculo.php └── index.php ├── Ejer03DadosPoker ├── DadoPoker.php └── index.php └── Ejer04Expocoches ├── Zona.php └── index.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/README.md -------------------------------------------------------------------------------- /ejemplos/01_SalidaPorPantallaYVariables/holaMundo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/01_SalidaPorPantallaYVariables/holaMundo.php -------------------------------------------------------------------------------- /ejemplos/01_SalidaPorPantallaYVariables/holaMundo02.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/01_SalidaPorPantallaYVariables/holaMundo02.php -------------------------------------------------------------------------------- /ejemplos/01_SalidaPorPantallaYVariables/holaMundo03.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/01_SalidaPorPantallaYVariables/holaMundo03.php -------------------------------------------------------------------------------- /ejemplos/01_SalidaPorPantallaYVariables/variables01.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/01_SalidaPorPantallaYVariables/variables01.php -------------------------------------------------------------------------------- /ejemplos/01_SalidaPorPantallaYVariables/variables02.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/01_SalidaPorPantallaYVariables/variables02.php -------------------------------------------------------------------------------- /ejemplos/01_SalidaPorPantallaYVariables/variables03.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/01_SalidaPorPantallaYVariables/variables03.php -------------------------------------------------------------------------------- /ejemplos/02_RecogidaDeDatosPorTeclado/saluda/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/02_RecogidaDeDatosPorTeclado/saluda/index.php -------------------------------------------------------------------------------- /ejemplos/02_RecogidaDeDatosPorTeclado/saluda/saluda.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/02_RecogidaDeDatosPorTeclado/saluda/saluda.php -------------------------------------------------------------------------------- /ejemplos/02_RecogidaDeDatosPorTeclado/suma/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/02_RecogidaDeDatosPorTeclado/suma/index.php -------------------------------------------------------------------------------- /ejemplos/02_RecogidaDeDatosPorTeclado/suma/suma.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/02_RecogidaDeDatosPorTeclado/suma/suma.php -------------------------------------------------------------------------------- /ejemplos/03_SentenciaCondicional/condicionalAbreviado.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/03_SentenciaCondicional/condicionalAbreviado.php -------------------------------------------------------------------------------- /ejemplos/03_SentenciaCondicional/ejemploCondicion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/03_SentenciaCondicional/ejemploCondicion.php -------------------------------------------------------------------------------- /ejemplos/03_SentenciaCondicional/ejemploSwitch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/03_SentenciaCondicional/ejemploSwitch.php -------------------------------------------------------------------------------- /ejemplos/03_SentenciaCondicional/igualdad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/03_SentenciaCondicional/igualdad.php -------------------------------------------------------------------------------- /ejemplos/03_SentenciaCondicional/operadoresLogicos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/03_SentenciaCondicional/operadoresLogicos.php -------------------------------------------------------------------------------- /ejemplos/04_Bucles/AdivinaElNumero/adivina.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/04_Bucles/AdivinaElNumero/adivina.php -------------------------------------------------------------------------------- /ejemplos/04_Bucles/AdivinaElNumero/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/04_Bucles/AdivinaElNumero/index.php -------------------------------------------------------------------------------- /ejemplos/04_Bucles/ejemploDoWhile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/04_Bucles/ejemploDoWhile.php -------------------------------------------------------------------------------- /ejemplos/04_Bucles/ejemploFor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/04_Bucles/ejemploFor.php -------------------------------------------------------------------------------- /ejemplos/04_Bucles/ejemploWhile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/04_Bucles/ejemploWhile.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/arrayAsociativo01.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/arrayAsociativo01.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/arrayAsociativo02.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/arrayAsociativo02.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/arrayAsociativoConCorchetes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/arrayAsociativoConCorchetes.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/arrayBidimensional01.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/arrayBidimensional01.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/arrayConCorchetes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/arrayConCorchetes.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/ejemploForeach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/ejemploForeach.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/ejemploSplFixedArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/ejemploSplFixedArray.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/recogidaDeDatosParaArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/recogidaDeDatosParaArray.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/temperaturas01.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/temperaturas01.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/temperaturas02.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/temperaturas02.php -------------------------------------------------------------------------------- /ejemplos/05_Arrays/valoresAleatorios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/05_Arrays/valoresAleatorios.php -------------------------------------------------------------------------------- /ejemplos/06_Funciones/matematicas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/06_Funciones/matematicas.php -------------------------------------------------------------------------------- /ejemplos/06_Funciones/numeroPrimo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/06_Funciones/numeroPrimo.php -------------------------------------------------------------------------------- /ejemplos/06_Funciones/numeroPrimo2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/06_Funciones/numeroPrimo2.php -------------------------------------------------------------------------------- /ejemplos/06_Funciones/numeroPrimoConFuncion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/06_Funciones/numeroPrimoConFuncion.php -------------------------------------------------------------------------------- /ejemplos/06_Funciones/simulacionDeSobrecarga/funciones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/06_Funciones/simulacionDeSobrecarga/funciones.php -------------------------------------------------------------------------------- /ejemplos/06_Funciones/simulacionDeSobrecarga/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/06_Funciones/simulacionDeSobrecarga/index.php -------------------------------------------------------------------------------- /ejemplos/07_SesionesYCookies/actorYActrizFavoritos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/07_SesionesYCookies/actorYActrizFavoritos.php -------------------------------------------------------------------------------- /ejemplos/07_SesionesYCookies/contadorDeVisitas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/07_SesionesYCookies/contadorDeVisitas.php -------------------------------------------------------------------------------- /ejemplos/07_SesionesYCookies/ejemploSesion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/07_SesionesYCookies/ejemploSesion.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/PDO/altaClienteAccion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/PDO/altaClienteAccion.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/PDO/altaClienteFormulario.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/PDO/altaClienteFormulario.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/PDO/conexionBDpdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/PDO/conexionBDpdo.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/PDO/listadopdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/PDO/listadopdo.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/banco.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/banco.sql -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/mysql/busqueda.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/mysql/busqueda.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/mysql/conexionBD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/mysql/conexionBD.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/mysql/consulta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/mysql/consulta.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/mysql/listadoCompleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/mysql/listadoCompleto.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/mysqli/conexionBDmysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/mysqli/conexionBDmysqli.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/mysqli/consultamysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/mysqli/consultamysqli.php -------------------------------------------------------------------------------- /ejemplos/08_AccesoABasesDeDatos/mysqli/listadoCompletomysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/08_AccesoABasesDeDatos/mysqli/listadoCompletomysqli.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/Animal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/Animal.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/Ave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/Ave.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/Gato.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/Gato.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/Pinguino.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/Pinguino.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploAnimal/index.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploCoche/Coche.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploCoche/Coche.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploCoche/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploCoche/index.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploGato/Gato.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploGato/Gato.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/EjemploGato/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/EjemploGato/index.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/PersonaV01/Persona.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/PersonaV01/Persona.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/PersonaV01/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/PersonaV01/index.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/PersonaV02/Persona.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/PersonaV02/Persona.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/PersonaV02/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/PersonaV02/index.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/PersonaV03/Persona.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/PersonaV03/Persona.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/PersonaV03/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/PersonaV03/index.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/PersonaV04/Persona.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/PersonaV04/Persona.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/PersonaV04/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/PersonaV04/index.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/SerializacionDeObjetos/MonstruoDeLasGalletas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/SerializacionDeObjetos/MonstruoDeLasGalletas.php -------------------------------------------------------------------------------- /ejemplos/09_PHPOrientadoAObjetos/SerializacionDeObjetos/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/09_PHPOrientadoAObjetos/SerializacionDeObjetos/index.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Controller/borraOferta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Controller/borraOferta.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Controller/grabaOferta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Controller/grabaOferta.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Controller/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Controller/index.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Controller/nuevaOferta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Controller/nuevaOferta.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Model/Oferta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Model/Oferta.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Model/PizzeriaDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Model/PizzeriaDB.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Model/oferta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/Model/oferta.sql -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/formularioOferta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/formularioOferta.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizza1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizza1.jpg -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizza2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizza2.jpg -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizza3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizza3.jpg -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizza4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizza4.jpg -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizzasanok.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/pizzasanok.jpg -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/trozopizza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/trozopizza.jpg -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/xbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/images/xbox.jpg -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/listado.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisJoseSanchez/aprende-php-con-ejercicios/HEAD/ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/View/listado.php -------------------------------------------------------------------------------- /ejemplos/10_Modelo_Vista_Controlador/OfertasPizzeriaBasico/index.php: -------------------------------------------------------------------------------- 1 |