Jump to content

sethupathy

Members
  • Posts

    35
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

sethupathy's Achievements

Member

Member (2/5)

0

Reputation

  1. Corbin you rock thanks a bunch mate works great problem solved
  2. Great guys thanks a bunch i was able to use my own code with little mod , but yours look much better problem solved
  3. hi guys here is my new problem because i have french users that will be entering data to my web form and there is questions with answers that require that enter data in money value 245.45 or like some users in french they use a 245,45 (comma) i am having problem with how mysql handles the money value when there is a comma the data is after the comma is missing i am using decimal 7,2 in mysql. is there a way that the semicolon becomes a . when the data is entered by the user? or is there a way around that pls any input much appreciated
  4. I have created a web form where i am having some problems with fire fox , i created the form using dreamweaver there are couple of questions where i have two collums in the same row firstname and last name that when i run it in firefox the mouse pointer redirect me to the previous field but with TAB i able to go to the second field, it does not happen in IE and its also happening to some radio buttons what could be the cause? pls help
  5. great thank you very much guys problem solved
  6. i did what you said and i added some more like ' and - " and it does not work /^[a-zA-ZéÉàÀ'-" ]+$/ is there another way to add ' - "
  7. this is my code and it wont accept french caracter like é à l' can someone help pls it keeps poping to enter again function isAlphabet(elem, helperMsg){ var alphaExp = /^[a-zA-Z ]+$/; if(elem.value.match(alphaExp)){ return true; }else{ alert(helperMsg); elem.focus(); return false;
  8. this is my code and it wont accept french caracter like é à l' can someone help pls function isAlphabet(elem, helperMsg){ var alphaExp = /^[a-zA-Z ]+$/; if(elem.value.match(alphaExp)){ return true; }else{ alert(helperMsg); elem.focus(); return false;
  9. thanks for the link. very helpful. Right now i have a fully working web form that i want to validate some of the radio buttons (not all of them) and i do not want to validate some fields so how do i check for some question if the radio buttons has been cheked or not is there a way to validate only some questions at different location in the web form how do i call the action thanks i dont really know how to put in words , it sound a bit silly but help needed thanks
  10. i want to be able to get numbers from 1-4 only nothing else how do i make this work with this code it never seems to work if (sondage_cpe.nombreins.value.length < 1 ) { alert("S.V.P. rentrez le nombre d'installation.") sondage_cpe.nombreins.focus() return false }
  11. Hi guys i have a really long web form to make (its made) i am having problem with validation. what i would like to do is to put an * asterix at the end on the line of all unanswered questions can someone help i have seen this on other web form someone help thanks
  12. Hi guys i have a really long web form to make (its made) i am having problem with validation. what i would like to do is to put an * asterix at the end on the line of all unanswered questions can someone help i have seen this on other web form someone help thanks
  13. I want to be able to rediredt my cleint to a web page instead of sending him a message how do i input a link into this if($error==""){ echo "Thank you for taking time to answer my web form.";
  14. hi guys i want to able to make a question with a rating, i want the user to rate from 1 to 3 for each choise but if he as selected 1 i dont want him to be able to select 1 again for the other 2 question ? using radio button Pls help choice 1 1 2 3 choise 2 1 2 3 choise 3 1 2 3
  15. hi guys i want to able to make a question with a rating, i want the user to rate from 1 to 3 for each choise but if he as selected 1 i dont want him to be able to select 1 again for the other 2 question ? using radio button Pls help choice 1 1 2 3 choise 2 1 2 3 choise 3 1 2 3
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.