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

  • Home
  • SEARCH
  • 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 8589431
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:03:21+00:00 2026-06-11T23:03:21+00:00

I know there are very tutorials out there and same questions as well, but

  • 0

I know there are very tutorials out there and same questions as well, but I have tried many times, and ajax didn’t work. plz correct my script:
here is index.php

<?php
echo'
<script type="text/javascript">
function ajax()
{
var xmlhttp;

xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("result").innerHTML=xmlhttp.responseText;
    }
  }
  xmlhttp.open("POST","ajax.php",true);
  xmlhttp.send();

    }
</script>

</head>

<body>
<p>&nbsp;</p>
<form id="form1" name="form1" method="post" action="" onsubmit="return ajax()">
  <p>
    <label for="num2">number 1</label>
    <input type="text" name="num1" id="num2" />
    *
  <label for="num3">number 2</label>
  <input type="text" name="num2" id="num3" />
    =
  <label for="result">Result</label>
  <input type="text" name="result" id="result" />
  </p>
  <p>
    <input type="submit"  value="Submit" />
  </p>
</form>';
?>

and here is ajax.php that is taking two variables and multiplying them and echoing the result, but my page refreses and didn’t see anything

    <?php
    $num1=$_POST["num1"];
    $num2=$_POST["num2"];

    $result=$num1*$num2;
    echo $result;
?>
  • 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-11T23:03:23+00:00Added an answer on June 11, 2026 at 11:03 pm

    This happens because function ajax() does not return anything so the form continues to submit.

    Add before function ends return false;

    Correct code:

    <html>
    <head>
    
    <script type="text/javascript">
    function ajax(){
        var xmlhttp;
        xmlhttp=new XMLHttpRequest();
        xmlhttp.onreadystatechange=function(){
            if (xmlhttp.readyState==4 && xmlhttp.status==200){
                document.getElementById("result").value=xmlhttp.responseText;
            }
        }
        var params = "num1="+document.getElementById('num2').value+"&num2="+document.getElementById('num3').value;
        xmlhttp.open("POST","ajax.php",true);
        xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        xmlhttp.setRequestHeader("Content-length", params.length);
        xmlhttp.setRequestHeader("Connection", "close");
        xmlhttp.send(params);
        return false;
    }
    </script>
    
    </head>
    
    <body>
        <p>&nbsp;</p>
        <form id="form1" name="form1" method="post" action="" onsubmit="return ajax()">
            <p>
                <label for="num2">number 1</label>
                <input type="text" name="num1" id="num2" />
                *
                <label for="num3">number 2</label>
                <input type="text" name="num2" id="num3" />
                =
                <label for="result">Result</label>
                <input type="text" name="result" id="result" />
                </p>
                <p>
                <input type="submit"  value="Submit" />
            </p>
        </form>
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know there have been many questions on grid and pack in the past
I know there is a very similar question here but I was hoping to
I know there is a wiki page about it , but since I'm very
This is a very narrow and specific question, but I know there are someone
I know there are a few questions floating around here on the subject, but
I know similar questions have been asked before but i think this is slightly
I know there is a very similiar question ( JavaScript: How to select "Cancel"
I know the title isn't very clear. I'm new to PHP, so there might
I know there is a lot on this topic but I can't get any
Somehow, there are really little tutorials out there for html5 video and audio playback.

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.