
Pasar un formulario escrito en html a php
Publicado por Tino (1 intervención) el 02/04/2016 12:02:59
Buenos días.
Necesito pasar el siguiente formulario escrito en html con partes de php en su interior, a php.
Es decir que empiece por:
Gracias por vuestra ayuda
Necesito pasar el siguiente formulario escrito en html con partes de php en su interior, a php.
1
2
3
4
5
6
7
8
9
10
11
12
13
<form name="a<?php echo $v['identificador'] ?>" method="post" action="agregacar.php?<?php echo SID ?>" id="a<?php echo $v['identificador'] ?>">
<tr bgcolor="<?php echo $color[$contador%2]; ?>" class='prod'>
<td><?php echo $v['REF'] ?></td>
<td><?php echo $v['NOMBRE'] ?></td>
<td><?php echo $v['PRECIO'] ?></td>
<td width="43" align="center"><?php echo $v['CANTIDAD'] ?></td>
<td width="136" align="center">
<input name="cantidad" type="text" id="cantidad" value="<?php echo $v['CANTIDAD'] ?>" size="8">
<input name="id" type="hidden" id="id" value="<?php echo $v['ID'] ?>"> </td>
<td align="center"><a href="borracar.php?<?php echo SID ?>&id=<?php echo $v['ID'] ?>"><img src="trash.gif" width="12" height="14" border="0"></a></td>
<td align="center">
<input name="imageField" type="image" src="actualizar.gif" width="20" height="20" border="0"></td>
</tr></form>
1
echo '<form name= "blablaba"';
Gracias por vuestra ayuda
Valora esta pregunta


0