Results 1 to 3 of 3

Thread: Customer Feedback

  1. #1
    Join Date
    Sep 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Customer Feedback

    Hi,

    Can anyone help me with some html code. I am trying to make a html page that has customer feedback for services.

    I would like the customers to fill out a form with their name and comments, then be able to post them underneath. (or above)

    In other words.. something like this.


    -----------------------------
    Customer Feedback

    Name: ______________
    Comments:_______________

    (then underneath)

    Janet "My service was great! I would highly recommend"

    Joe "A+ Service, would recommend"

    --------------------------------
    Can anyone help?

    Thank you,
    Bryan

  2. #2
    Join Date
    Sep 2005
    Location
    borneo island
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You need CGI for that :/

  3. #3
    Join Date
    Jul 2005
    Posts
    101
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default

    If you are just trying to display the text the customer has filled in you can use
    document.getElementById('yourfeedback').value=document.getElementById('feedbackentry').value

    where feedbackentry is the id of the input text area and yourfeedback is the id of the text area you want to display it in.

    You could put this into a function and call it from the Submit onclick event

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
  •