Hi:
I have recently started exploring zope and I want to develop this simple thing:
A search form and when somebody presses the submit button after specifying the search criteria, I want
search results to be displayed on the same page below the  the search criteria.
 
Following is the piece of code,
 
<dtml-var standard_html_header>
<form action= "dtFindCustomer">
<table>
<tr>
<th align="left">Name</th>
<td><input type="text"name="name"></td>
</tr>
<tr>
<th align="left"><em>Age</em></th>
<td><input type="text"name="age"size="3"></td>
</tr>
</table>
<input type="submit"value="Search Customer">
</form>
 
Here dtFindCustomer is a DTML method which in turns call z sql method which performs actual search in the MY SQL DB. Any suggetions, links or references to acomplish this are welcome.
 
Regards
Jawad
 
 


Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

_______________________________________________ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )

Reply via email to