Articulos PHP
- 1.6 Unir comparaciones.
- 3.4 Usando extract con MySQL.
- 3.1 Conexi贸n MySQL con enunciado die.
- 1.7 Enunciado exit o die.
- 3.2 Obteniendo informaci贸n de la base de datos.
Warning: Use of undefined constant php - assumed 'php' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 128
Articulos Jquery
- 1.3 Empezando a utilizar Jquery
- 2.6 El efecto fadeIn y fadeOut.
- 2.5 Recorriendo el array con each().
- 2.9 Valor de un campo de texto con attr().
- 1.7 El m茅todo CSS.
Warning: Use of undefined constant jquery - assumed 'jquery' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 137
Articulos CSS
- 1.2 Estructura de los estilos CSS.
- 1.1 Como incluir estilos en una p谩gina web.
- 1 Hojas de estilo CSS.
Warning: Use of undefined constant css - assumed 'css' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 146
Articulos Mysql
- 3.4 Creando una tabla con CREATE TABLE.
- 3.3 Definici贸n para columnas.
- 2.6 Combinando resultados con UNION ALL.
- 2.4 Seleccionando filas con LIKE y WHERE
- 1.2 Funci贸n AVG().
Warning: Use of undefined constant mysql - assumed 'mysql' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 155
Warning: Use of undefined constant tema - assumed 'tema' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 199
Warning: Use of undefined constant tema - assumed 'tema' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 220
Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 220
1.2 Enunciados de salida con echo.
Para poder imprimir un resultado en pantalla, o bien, para mostrar un resultado en la ventana del explorador web, es necesario imprimirlo en la pantalla y esto se hace con la instrucci贸n echo,de esta manera, si tenemos una variable con un determinado valor y queremos que dicho valor se muestre en la ventana del explorador tendremos que hacer lo siguiente.
<?php
$colorAuto=”ROJO”;
echo $colorAuto;
?>
Como se puede observar se inicializo una variable, es decir, se cre贸 y se le asign贸 un valor al mismo tiempo y posteriormente se muestra su valor usando el enunciado echo. La salida el script anterior ser铆a simplemente la palabra ROJO.
Warning: Use of undefined constant tema - assumed 'tema' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 225
Enunciados de salida echo.
Warning: Use of undefined constant id - assumed 'id' (this will throw an Error in a future version of PHP) in /home/vhosts/lawebderay.orgfree.com/articulos.php on line 225
1.2