
como ago funcionar este formulario pero en lugar de usar submit usando button O_O
Código PHP:
   
<form method="post" action="">
<input type="text" name="yo" />
<!--
<input type="submit" value="hola" />
-->
<input type="button" value="hola" />
</form>
 <?php
 echo $_POST['yo'];
 ?>    
 
 yo pence que el submit y el button era lo mismo 

