Results 1 to 2 of 2

Thread: Forms question...

  1. #1
    Join Date
    Mar 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Forms question...

    Hello. I've been building a form with quite a few checkboxes in order to enable clients to subscribe to various free publications. There are quite a few, so it's been suggested that it would be nice to include a panel on the page that lists the person's selections as they progress down the page... Is it possible to do this with Javascript or DHTML? I'm teaching myself a lot of this as I go, so if anyone knows of a really good basic example of this I could check out and maybe (a) copy or (b) realise it's beyond me and run away, that would be great! Many thanks.

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    this is possible with Javascript, by setting a cookie, however if the user has Javascript and/or cookies disabled then you would not retain the information.

    a better solution would be to use a database table that tracks the user (by some unique identifier) and the magazine (unique identifiers)

    by having three tables
    1 for users
    1 for magazines/publications
    1 that references user / publication

    your information is stored regardless and the user could just check in on it from some page (panel). the downside is that you need a server-side based language and access to a database. PHP and MySQL are both open-source, so you would just need to find a host that has access to those.

Bookmarks

Posting Permissions

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