no suelo usar php
he editado varios archivos php a mi gusto osea q entiendo un poco muy poco
pero tengo un problema en un simple formulario
a ver si alguien me puede decir q esta mal
nombres.htm
<html>
<body>
<form method=post ACTION=nombres.php>
Como te llamas ?
<input name=”llamas” type “TEXT”>
<br>
<br>
<input type=submit>
</form>
</body>
</html>
nombres.php
<html>
<body>
<?
$llamas=$_POST['llamas'];
echo "Su nombre es $llamas"; ?>
</body>
</html>
cuando realizo el formulario de nombres.htm
me envia a nombres.php y solo aparece SU NOMBRE ES
y no sale el nombre =S
tengo php 5
funcionan otros formularios
se q es una tonteria pero con esto ya hago lo q necesito =)
gracias de antemano