how to submit variables with an html
Hi, i have a a question. How do i submit more than one var. with an html-form? one: <a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>">>Aendern</a> two???: <a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>? gefundene_id=<dtml-var bild_id>">>Aendern</a> But the second version does not funktion. Can someone help me. Thanks...Florian Fischer
on or about, Monday, May 27, 2002, we have reason to believe that florian@fischer.tc wrote something along the lines of : fft> Hi, fft> i have a a question. fft> How do i submit more than one var. with an html-form? fft> one: fft> <a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>">>Aendern</a> fft> two???: <a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>&gefundene_id=<dtml-var bild_id>">Aendern</a> -- Geir Bækholt web-developer geirh@funcom.com funcom oslo | webdev-team
i have a a question. How do i submit more than one var. with an html-form? one: <a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>">>Aendern</a> two???: <a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>? gefundene_id=<dtml-var bild_id>">>Aendern</a>
But the second version does not funktion. Can someone help me.
[Eddie Moench] Yes: The simplest way is: <a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>&gefundene_id=<dtml-var bild_id>">>Aendern</a> You just have to separate the "variable=value-pairs" with "&". Only the first starts w/ "?" - introducing the beginning of the search-parameters of an URL. Eddie Mönch 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
florian@fischer.tc wrote:
Hi,
i have a a question. How do i submit more than one var. with an html-form?
one:
<a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>">>Aendern</a>
two???:
<a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>? gefundene_id=<dtml-var bild_id>">>Aendern</a>
But the second version does not funktion. Can someone help me.
The second form variable needs a "&", not a "?". So, <a href="aendern_bilddaten?gefundene_nummer=<dtml-var bild_nummer>&gefundene_id=<dtml-var bild_id>">>Aendern</a> should do what you want, if the DTML is right (just now learning Zope). -- Randall Randall <randall@randallsquared.com> Crypto key: randall.freedomspace.net/crypto.text For every new mouth to feed, there are two hands to produce. -- Peter T. Bauer, 1915-2002
participants (4)
-
Eddie Moench -
florian@fischer.tc -
Geir B�kholt -
Randall Randall