[Zope] passing parameters in a call/in/with

Jens Vagelpohl jens@digicool.com
Tue, 26 Dec 2000 17:50:01 -0500


try...

<dtml-in expr="get_names_for_id(chosen_id=123)">


jens


on 12/26/00 17:32, Lloyd Kvam at lloyd@venix.com wrote:

> This is also a problem for me.
> 
>> From using ZNOLK I have a DTML document that uses dtml-in to execute a query.
> The query is get_names_for_id and is:
>   select name from name_table where id = <dtml-sqlvar chosen_id type=int>
> 
> I can now call the form using:
>   http://localhost:8080/form?chosen_id=123
> 
> My dtml form would be simpler if there was a way to code:
>   <dtml-in get_names_for_id(123)>
> 
> I was unable to make that work.
> 
> Olaf Zanger wrote:
> 
>> hi there,
>> 
>> with the znolk product i get data by "select * ..." out of my database.
>> some fields
>> are id's and i would like to get data out of an other table basing on
>> this id.
>> 
>> how can i pass the id through a <dtml-call/in/with method>?
>> 
>> olaf
>>