[Zope] Passing parameters to an SQL_method

Steve Spicklemire steve@spvi.com
Fri, 3 Aug 2001 12:20:05 -0500


Try:

<form action="sql_update" method="POST">
<br><table>
<tr><th>Code:</th>
<td><input code="code" width=30 value="<dtml-var code>">
<tr><th>Name :</th>
<td><input name="name" width=30 value="<dtml-var name>">
<tr><th>Cognome :</th>
<td><input name="surname" width=30 value="<dtml-var surname>">

</td></tr>
</table>

<br>
<input type="submit" value=" UPDATE "><br>
</form>

-steve


On Friday, August 3, 2001, at 12:15 PM, Fabrizio wrote:

> <br><table>
>
>
> <tr><th>Code:</th>
> <td><input code="code" width=30 value="<dtml-var code>">
> <tr><th>Name :</th>
> <td><input name="name" width=30 value="<dtml-var name>">
> <tr><th>Cognome :</th>
> <td><input name="surname" width=30 value="<dtml-var surname>">
>
> </td></tr>
> </table>
>
> <br>
>
>
> <form action="sql_update(name, code)" method="POST">
> <input type="submit" value=" UPDATE "><br>