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 7165033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:10:25+00:00 2026-05-28T14:10:25+00:00

Codes ####### The name of this file is ‘test_ajaxfn.php’ ####### <?php if($_POST[‘var’]) { $result

  • 0

Codes

####### The name of this file is 'test_ajaxfn.php' #######
<?php
if($_POST['var']) {
    $result = $_POST['var'];
    echo $result.' is successfully passed to the same page using Ajax Post. :)';    
} else {
    echo 'There is no POST variable passed to the same page. :( ';  
}

echo '<br> Above indicates the ajax post function \'.\' ';
?>


<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>


<script>
$(document).ready(function() {
    $('#clickdiv').click(function() {
        var sth = "value to send to PHP";
        $.post(
        'test_ajaxfn.php',
        {"var":"1234567"},
        function(){
            alert('success');
            $('#clickdiv').text('the POST variable should be posted.');
        }
        );

    });
});
</script>

</head>

<body>
<div id="clickdiv" style="width: 50px; height: 50px; background:#CC3300; cursor:pointer;">
</div>
</body>
</html>

Description

I want to pass POST variable to the same page and load it using AJAX. However, I failed to do so. I can’t pass the “var” to $_POST[‘var’] using POST method. Hence I can’t display the following:
echo $result.’ is successfully passed to the same page using Ajax Post. :)’;

What have I done wrong?

Reference

I was actually trying to tackle this problem:
Calculate Google distance of Input address and all the address from MySQL Server using jQuery ajax.get
Now I simplify my problem but still it doesn’t work. Please help 🙁

  • 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-05-28T14:10:25+00:00Added an answer on May 28, 2026 at 2:10 pm

    If you post it to the same page the server creates a new process to handle the request. The reason you are not seeing any output is because the server is seeing a post to a file, spinning up an instance and executing the php script but that is different from your php thread. Change your script to this to see your success text.

    <script>
    $(document).ready(function() {
        $('#clickdiv').click(function() {
            var sth = "value to send to PHP";
            $.post(
            'test_ajaxfn.php',
            {"var":"1234567"},
            function(result){
                alert(result);
                $('#clickdiv').text('the POST variable should be posted.');
            }
            );
    
        });
    });
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My source file looks like this: <x> <names> <name>name1</name> <name>name2</name> </names> <codes> <code>code1</code> <code>code2</code>
Php noob. I have this text file (names.txt) with comma separated names and codes.
I tried this aproach without any success the code I'm using: // File name
I have a .php file with HTML code also in it. Through this file
There is a ringtone file 'myringtone.m4r'. Is it possible to set this ringtone file(name)
I have a php script whose name is XYZ.php. When I load that file
I need a database for this: <?php if (isset($_POST['addcontentbox'])) { // Connection to Database
I have a table like this: name code group john 12 smith 15 how
Markup: <input type=text name=email /> Code: $(':text').focusout(function(){ $(this).validate(function(){ $(this).attr('name'); }); }); Plugin: (function($){ $.fn.validate
I have this code struct Student { char name[48]; float grade; int marks[10,5]; char

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.