Hola,
Tengo el siguiente html y php pero no consigo que se muestre lo del php en mi ordenador. ¿Que tengo que hacer para que funcione php en mi ordenador? Soy nueva en esto.
Código HTML:
Ver original<form ACTION="verequipo.php" method=post name="" id=""> <div align="center">Cual es tu Equipo Favorito?
<input name="$equipo" type = "text" id="" size="40"> <input type=submit name=Enviar value=Enviar>
Código PHP:
Ver original<html>
<head>
<title>Ver Equipo</title>
</head>
<body>
<p>Tu equipo favorito es:
<?php
Echo "$_POST['equipo']";
?>
</p>
</body>
</html>
Gracias