Variables en PHP

Variables en PHP:
Guardar:
<?php
$nombre = "texto aqui";
?>

mostrar:
<?php
echo $nombre;
?>