Results 1 to 3 of 3

Thread: Please Help with my form
      
   

  1. #1
    AmaDee is offline Colonel
    Join Date
    Jun 2006
    Location
    Stone Mountain, GA
    Posts
    851

    Default Please Help with my form

    Hi Everybody,

    Hope everythings' going great. I just designed my contact page www.designsbymapillar.com/contact.html and, to the best of my knowledge, followed the instructions on how to create a form. Please take a look and see if you can figure out why it's not working? Any help will be greatly appreciated.

    Also, is there a script that I can incorporate into my form so that my initial text is deleted when fields are clicked into?

    Mapillar

  2. #2
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Please Help with my form

    Please post the code for action.php, its post likly a problem with the script.

    Also there is a way to clear, heres the code that needs to be in html tag for each form element

    onFocus="if(this.value=='message')this.value='';"

    Change the word "message" to whatever words are in the "value" attribute or each element.

    so for instance on the form on your website, for the form field used for peoples name, you should have

    onFocus="if(this.value=='Name:')this.value='';"

    the whole tag should look something like
    <input type="text" name="name" value=" Name:" onFocus="if(this.value=='Name:')this.value='';">

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  3. #3
    AmaDee is offline Colonel
    Join Date
    Jun 2006
    Location
    Stone Mountain, GA
    Posts
    851

    Default Re: Please Help with my form

    it's working now, thanks.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not 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