Seend value to a form

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Seend value to a form

    Hellow to everybody i would like to know how can i send a value,
    from one html to other, to get it late on a form page and inserted on
    a hideen camp.

    Thaks, to anyone who can help me
    David



    informaticatec Guest

  2. Similar Questions and Discussions

    1. file upload form enctype="multipart/form-data
      I'm upload a file using cffile upload and that seems to work fine except I need to use enctype="multipart/form-data on the form side. This isn't a...
    2. #25676 [Opn->Bgs]: Form hidden input ouput when any form=* is in url_rewriter.tags
      ID: 25676 Updated by: sniper@php.net Reported By: davey@php.net -Status: Open +Status: Bogus Bug...
    3. #25676 [Opn]: Form hidden input ouput when any form=* is in url_rewriter.tags
      ID: 25676 Updated by: davey@php.net Reported By: davey@php.net Status: Open Bug Type: Session related...
    4. #25676 [Bgs->Opn]: Form hidden input ouput when any form=* is in url_rewriter.tags
      ID: 25676 Updated by: davey@php.net Reported By: davey@php.net -Status: Bogus +Status: Open Bug...
    5. #25676 [NEW]: Form hidden input ouput when any form=* is in url_rewriter.tags
      From: davey@php.net Operating system: WinXP/FreeBSD PHP version: 4CVS-2003-09-26 (stable) PHP Bug Type: Session related Bug...
  3. #2

    Default Re: Seend value to a form

    Please don't repost the same question when you already have a response to
    your previous one.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "informaticatec" <informaticatec@ya.com> wrote in message
    news:ei3coc$5ru$1@forums.macromedia.com...
    > Hellow to everybody i would like to know how can i send a value,
    > from one html to other, to get it late on a form page and inserted on
    > a hideen camp.
    >
    > Thaks, to anyone who can help me
    > David
    >
    >
    >

    Murray *ACE* Guest

  4. #3

    Default Re: Seend value to a form

    Ok Murray, but i didnt get ansewr i have been locking trough internet,
    an showed diffent samples of forms,

    But the point is that i am locking to find a page sources, made with html
    that seends a value, example:

    Page 1) This page contains some kind of link button that contains a hidden
    value,
    for example an aleatory number "001234" or "001235".

    Page 2) this is a form page that get this value so that the person who
    seends this
    form, seend the form with this value inserted, so when the email is recived,
    the email contains all the information, typed or created on the form page,
    and this value that where in first place on the page 1.

    Thanks for help, i am dont know to much of this subjets.
    David



    "Murray *ACE*" <forums@HAHAgreat-web-sights.com> escribió en el mensaje
    news:ei535k$5rn$1@forums.macromedia.com...
    > Please don't repost the same question when you already have a response to
    > your previous one.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    > [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    > [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    > [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    > [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "informaticatec" <informaticatec@ya.com> wrote in message
    > news:ei3coc$5ru$1@forums.macromedia.com...
    > > Hellow to everybody i would like to know how can i send a value,
    > > from one html to other, to get it late on a form page and inserted on
    > > a hideen camp.
    > >
    > > Thaks, to anyone who can help me
    > > David
    > >
    > >
    > >
    >
    >
    >


    informaticatec Guest

  5. #4

    Default Re: Seend value to a form

    This is not something that HTML can do. It would require custom javascripts
    on the receiving page to parse the value from the URL.

    Page 1 would send the value like this -

    <a href="page2.html?value=012345"

    and page2 would need to parse that value.

    The problem with this method is that the value itself will appear in the
    address bar of the browser, and can be seen, read, and perhaps even modified
    by the visitor.

    Alternatively, page1 could have a form with a hidden field, the value of
    which is POSTed to page2 when the form is submitted. Unfortunately, HTML
    has no provision for getting at the value. To do that, you would need
    either custom javascript or server-side scripting.

    Another alternative is that page1 could write that value to a cookie, pass
    control to page2, which would read that value from the cookie.

    I believe that those are your only options, and I am not sure that any of
    them are suitable for you.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "informaticatec" <informaticatec@ya.com> wrote in message
    news:ei69os$kl5$1@forums.macromedia.com...
    > Ok Murray, but i didnt get ansewr i have been locking trough internet,
    > an showed diffent samples of forms,
    >
    > But the point is that i am locking to find a page sources, made with html
    > that seends a value, example:
    >
    > Page 1) This page contains some kind of link button that contains a
    > hidden
    > value,
    > for example an aleatory number "001234" or "001235".
    >
    > Page 2) this is a form page that get this value so that the person who
    > seends this
    > form, seend the form with this value inserted, so when the email is
    > recived,
    > the email contains all the information, typed or created on the form page,
    > and this value that where in first place on the page 1.
    >
    > Thanks for help, i am dont know to much of this subjets.
    > David
    >
    >
    >
    > "Murray *ACE*" <forums@HAHAgreat-web-sights.com> escribió en el mensaje
    > news:ei535k$5rn$1@forums.macromedia.com...
    >> Please don't repost the same question when you already have a response to
    >> your previous one.
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (If you *MUST* email me, don't LAUGH when you do so!)
    >> ==================
    >> [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    >> [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    >> [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    >> [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    >> ==================
    >>
    >>
    >> "informaticatec" <informaticatec@ya.com> wrote in message
    >> news:ei3coc$5ru$1@forums.macromedia.com...
    >> > Hellow to everybody i would like to know how can i send a value,
    >> > from one html to other, to get it late on a form page and inserted on
    >> > a hideen camp.
    >> >
    >> > Thaks, to anyone who can help me
    >> > David
    >> >
    >> >
    >> >
    >>
    >>
    >>
    >
    >
    >

    Murray *ACE* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139