passing data between forms.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bill

    passing data between forms.

    Can anyone tell me the best way to pass form entries from one page to the
    other just using javascript?

    The only ways I've found are coockies or using hidden fields to store the
    data and passing it page to page via as URL parameters with GET.

    I have 7 pages, 60 questions - some text areas with 160 char capacity, and
    users have to be able to jump from one page to another using next, previous
    buttons, or tabs.

    Anyone advise me on the best method?

    Thanks.


  • steve stevo

    #2
    Re: passing data between forms.

    you could also use session variables, post method or store the code back end
    in xml.


    "Bill" <no@where.com > wrote in message
    news:bmetgv$pd8 $1@titan.btinte rnet.com...[color=blue]
    > Can anyone tell me the best way to pass form entries from one page to the
    > other just using javascript?
    >
    > The only ways I've found are coockies or using hidden fields to store the
    > data and passing it page to page via as URL parameters with GET.
    >
    > I have 7 pages, 60 questions - some text areas with 160 char capacity, and
    > users have to be able to jump from one page to another using next,[/color]
    previous[color=blue]
    > buttons, or tabs.
    >
    > Anyone advise me on the best method?
    >
    > Thanks.
    >
    >[/color]


    Comment

    • Bill

      #3
      Re: passing data between forms.


      "steve stevo" <steve@stevoste ve.fsnet.co.uk> wrote in message
      news:bmetpd$kfg $1@news6.svr.po l.co.uk...[color=blue]
      > you could also use session variables, post method or store the code back[/color]
      end[color=blue]
      > in xml.[/color]

      I'd rather use PHP and store the info on the server, but I've been asked to
      try and keep most of the work client-side. Session looks interesting. May
      look at cookies if my files end up being too big.

      Thanks.


      [color=blue]
      >
      >
      > "Bill" <no@where.com > wrote in message
      > news:bmetgv$pd8 $1@titan.btinte rnet.com...[color=green]
      > > Can anyone tell me the best way to pass form entries from one page to[/color][/color]
      the[color=blue][color=green]
      > > other just using javascript?
      > >
      > > The only ways I've found are coockies or using hidden fields to store[/color][/color]
      the[color=blue][color=green]
      > > data and passing it page to page via as URL parameters with GET.
      > >
      > > I have 7 pages, 60 questions - some text areas with 160 char capacity,[/color][/color]
      and[color=blue][color=green]
      > > users have to be able to jump from one page to another using next,[/color]
      > previous[color=green]
      > > buttons, or tabs.
      > >
      > > Anyone advise me on the best method?
      > >
      > > Thanks.
      > >
      > >[/color]
      >
      >[/color]


      Comment

      Working...