declaracion de variables PHP
Las
variables en PHP son representadas mediante el
símbolo de $ seguido del nombre de la
variable. Cabe mencionar que las
variables en el lenguaje de
programación PHP son sensibles a mayúsculas y
minúsculas. A continuación veremos un ejemplo sencillo de uso de variables en PHP:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Pagina variables</title>
</head>
<body>
<?php
/*Diferentes tipos de variables*/
$texto="Hola mundo";
$num1= 100;
$num2=1000.500;
$numflotante=10.4;
$boleano=true;
/*Variables sensibles a minusculas y mayusculas*/
$noeslomismo='no es lo mismo el valor de esta variable: $noeslomismo';
$NOESLOMISMO='Que el valor de esta variable: $NOESLOMISMO';
echo $texto."<br/>".$numflotante."<br/>Sensibilidad a variables PHP:<br/>".$noeslomismo."<br/>".$NOESLOMISMO."</br>".$boleano;
?>
</body>
</html>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Pagina variables</title>
</head>
<body>
<?php
/*Diferentes tipos de variables*/
$texto="Hola mundo";
$num1= 100;
$num2=1000.500;
$numflotante=10.4;
$boleano=true;
/*Variables sensibles a minusculas y mayusculas*/
$noeslomismo='no es lo mismo el valor de esta variable: $noeslomismo';
$NOESLOMISMO='Que el valor de esta variable: $NOESLOMISMO';
echo $texto."<br/>".$numflotante."<br/>Sensibilidad a variables PHP:<br/>".$noeslomismo."<br/>".$NOESLOMISMO."</br>".$boleano;
?>
</body>
</html>
Comentarios
Publicar un comentario