
05/10/2014, 16:41
|
| | Fecha de Ingreso: junio-2012 Ubicación: En el Mundo
Mensajes: 766
Antigüedad: 12 años, 9 meses Puntos: 10 | |
duda en ejecutar un formulario hola a todos es que tengo una duda en lograr resolver esto
tengo esto echo
<form name="edit" action="" method="post">
<input type="hidden" name="idS" value="<?php echo $row_list['id']; ?>">
<input type="image" name="edit" src="images/edit.png" style="border:0px; top:0;" width="16" height="16" value="Edit"/>
<input type="hidden" name="Edit" value="edit">
</form>
y me funciona ya que lo ejecuta el formulario pero quiero que en vez que salga una imagen sea algo asi
<form name="edit" action="<?php echo( $action ); ?>" method="<?php echo( $method ); ?>">
<input type="hidden" name="idS" value="<?php echo $row_list['id']; ?>">
<a href="">Enviar formulario</a>
<input type="hidden" name="Edit" value="edit">
</form> |