AW: [Zope] how to submit variables with an html

Eddie Moench Moench@Ontoprise.DE
Mon, 27 May 2002 15:51:43 +0200


> i have a a question.
> How do i submit more than one var. with an html-form?
> one:
> <a href=3D"aendern_bilddaten?gefundene_nummer=3D<dtml-var
> bild_nummer>">>Aendern</a>
> two???:
> <a href=3D"aendern_bilddaten?gefundene_nummer=3D<dtml-var =
bild_nummer>?
> gefundene_id=3D<dtml-var bild_id>">>Aendern</a>
>=20
> But the second version does not funktion.
> Can someone help me.

[Eddie Moench] Yes: The simplest way is: <a
href=3D"aendern_bilddaten?gefundene_nummer=3D<dtml-var
bild_nummer>&gefundene_id=3D<dtml-var bild_id>">>Aendern</a>

You just have to separate the "variable=3Dvalue-pairs" with "&". Only =
the
first starts w/ "?" - introducing the beginning of the search-parameters
of an URL.

Eddie M=F6nch
Pre-Sales Consulting &
Software Development
moench@ontoprise.de

ontoprise GmbH
phone: +49 721 - 665 79 - 13, fax: +49 721 - 665 79 - 11
Haid-und-Neu-Str. 7, D-76131 Karlsruhe, Germany> Thanks...Florian
Fischer