Jump to content

Pass more than one variable via ajax/php


millercj

Recommended Posts

I need to pass two variables into a php script with ajax. I've done it with one but i'm not 100% sure how to adapt it. Using my 1 variable format this is an excerpt from my javascript where i call the value:

 

var url = "../../portal/powerscripts/action_check_usr.php?param=";

function updateNameUser() {
document.getElementById('unchk').innerHTML = "<img src='../../images/other/usraction.gif'/>";
var nameuser = document.getElementById("usr").value;
http.open("GET", url + escape(nameuser), true);
http.onreadystatechange = handleHttpResponseUser;
http.send(null);
}

 

and where it comes into my php:

$age = addslashes($_GET['param']);

 

 

if anyone knows how to pass two variables using this format it would be of great assistance.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.