08/08/2012, 04:43
|
| | Fecha de Ingreso: noviembre-2004 Ubicación: Medellín
Mensajes: 121
Antigüedad: 20 años, 1 mes Puntos: 1 | |
No muestra mensaje Hola, tengo este formulario sencillo y quiero que muestre un mensaje.
<body>
<p>
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
function mensaje(){
echo "SS";
}
?>
</p>
<form id="formulario" name="formulario" method="post" >
<p>
<label>
<input type="text" name="cedula" id="cedula" />
</label>
</p>
<p>
<label>
<input type="button" name="guardar" id="guardar" value="Enviar" onclick="mensaje();"/>
</label>
</p>
</form>
<p> </p>
</body> |