Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/06/2009, 08:01
Avatar de abimaelrc
abimaelrc
Colaborador
 
Fecha de Ingreso: mayo-2009
Ubicación: En el planeta de Puerto Rico
Mensajes: 14.734
Antigüedad: 15 años
Puntos: 1517
Respuesta: Añadir valores a una variable

Código PHP:
<?php
$variable 
"valor";

echo 
$variable."<br />";

$variable $variable " de mi variable";

echo 
$variable;
?>