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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:46:35+00:00 2026-05-22T20:46:35+00:00

I am trying to do something very simple: Pass 2 text variables to a

  • 0

I am trying to do something very simple: Pass 2 text variables to a php script and insert them into a MySQL db. For some reason however I can’t get the variables to pass (so I just get empty records in my DB).

function ajaxCall(){
 
        $.ajax({
            type: "GET",
            url: "http://www.*.be/bubblingAjax.php",
            cache: false,
            data: "colour="+colour+"&size="+size,
        dataType: "html",
            success: onSuccess
        });
        return false;
    };

And the PHP:

<?php
    try
    {
        $connection = mysql_connect("#");
        mysql_select_db("#");

        $colour = mysql_real_escape_string($_GET['colour']);
        $size = mysql_real_escape_string($_GET['size']);
        
        mysql_query("INSERT INTO bubble (colour, size) VALUES ('$colour', '$size')");
        mysql_close($connection);
        echo "SUCCESS";
        echo $colour;
        echo $size;
    }
    catch(Exception $e)
    {
        echo $e->getMessage();
    }
?>

Anyone willing to take a quick look at it and point out my -probably obvious- mistake? It’s been driving me nuts for over a day.

  • 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-22T20:46:36+00:00Added an answer on May 22, 2026 at 8:46 pm

    This has to work:

    <script type="text/javascript">
    $(document).ready(function() {
       //you can wrap the code into an event, e.g click()
       var colour=...
       var size=...
       $.post("http://www.website.com/bubblingajax.php", { colour: colour, size: size },
       function(data) {
         alert("Respond: " + data);
       }); 
    });
    
    </script>
    

    and the PHP (only changed get to post)

    <?php
        try
        {
            $connection = mysql_connect("#");
            mysql_select_db("#");
    
            $colour = mysql_real_escape_string($_POST['colour']);
            $size = mysql_real_escape_string($_POST['size']);
    
            mysql_query("INSERT INTO bubble (colour, size) VALUES ('$colour', '$size')");
            mysql_close($connection);
            echo "SUCCESS";
            echo $colour;
            echo $size;
        }
        catch(Exception $e)
        {
            echo $e->getMessage();
        }
    ?>
    

    Also to debug, I would suggest using firebug or chrome’s build in inspect tools.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying something very simple, but for some reason it does not work.
I'm trying to do something very simple in C++/CLI, however I'm running into issues
I'm trying to do something very simple, yet I can't seem to find the
I am trying to accomplish something very simple, and I'm hoping someone can point
I'm trying to do something which is probably very simple, I have a directory
I am trying to do something very simple. I want to display an image
I'm trying to do something very simple in my first Rails app (Rails 3)
i'm php coder, trying to get into python world, and it's very hard for
I'm trying to do something very simple: animate a bunch of sprites so that,
I'm trying to do something very simple in Jquery which i just cant get

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.