Forum Moderators: open
e.g.
If you wanted to post the users age then in the PHP file you would do somthing liken the following:
<?
session_start();
if ($_POST['age'])
{
$_SESSION['age'] = $_POST['age'];
}
?>
Like i said, the session variable is now stored for any other use.
I hope i have helped.
Del
You can pass the information from the url, but usualy you would send them as a string in your request, not as a direct url.
Read more here: wikipedia xmlHTTPRequest [en.wikipedia.org]