Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8872691
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:16:53+00:00 2026-06-14T18:16:53+00:00

I am setting up a registration form. This form has 7 fields that are

  • 0

I am setting up a registration form.
This form has 7 fields that are being tested for validation.
2 of them have a special validation; I have an Ajax call to a PHP class where I send an email_string to this class, testing, if such an email already exists in my database (evading duplicates).

params = {};
params['source'] = 'checkEMail';
params['email']  = email
$.ajax({
    type: 'POST',
    url : 'some_class.php',
    data : params,
    success: function(msg)
    {
        if(msg > 0) /* email exists */
            is_error = true;
    }
});

And in my PHP Class I got something like this:

$final = mysql_fetch_assoc(foo);
echo ($final) ? 1 : 0;

I was testing the data and in fact – I get ‘1’ if the email exists and ‘0’ if it does not.

Funny thing is, that this snippet works fine AS LONG AS there are other errors in this form – like an empty username.
The “is_error” is a boolean that is set to false at the beginning of the script and if one validation fails, it gets true.
Then, finally, I got this:

if(is_error)
{
    error.show();
    error.empty().append('some html foo');
}
else
{
    $('form').submit();
    error.empty().hide();
}

So how can it be that I the form will be send although is_error is set to true?
Only reason I could think of is that the form is being send before the “is_error” is being testet – but the send of the form is at the very bottom of the script.

Oh and I am calling it this way:

<script type="text/javascript">
            $("#reg_submit").click(function(event) {
                event.preventDefault(); 
                checkReg();
            });
</script>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T18:16:54+00:00Added an answer on June 14, 2026 at 6:16 pm

    instead of having the if(is_error){ part at the end of the script, I would suggest you to do it in the ajax request completion to avoid race conditions:

    $.ajax({
        type: 'POST',
        url: 'some_class.php',
        data: params,
        success: function(msg) {
            if (msg > 0) /* email exists */
            is_error = true;
        },
        complete: function() {
            if (is_error) {
                error.show();
                error.empty().append('some html foo');
            } else {
                $('form').submit();
                error.empty().hide();
            }
        }
     });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an AlertWindow that has input fields for registration purposes (looks similar to
I have a registration form that a user can access via invitation. For example,
I have a VF page form that has a text field. The value of
I have a registration form that when the user enters in valid registration data
Greetings, I am setting up a pretty standard registration form with password field. The
I have created custom registration form in drupal 6. i have used changed the
I have found here on stackoverflow a solution to extend django-registration with new fields
I have tried setting this up based on previously asked questionshere on stack overflow
In my app i have the AUTH_PROFILE_MODULE set to users.UserProfile . This UserProfile has
While setting up the django-registration module I have run into a bit of trouble.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.