Hello, My problem is the folowing: I am trying to retrieve the postvalue, but whenever I put that statement in the php code the ajaxcall will fail.
I cannot see what I am missing here??
$.ajax({
url: "includes/livetabs.php?actie=sessiegebruikersnaam",
data: {gebruikersnaam: tbgebruikersnaam},
cache: false,
dataType: "json",
success: function(data) {
//opslaan van gebruikersnaam in php sessie
/*$.post("includes/livetabs.php", {"sessiegebruikersnaam": chatnaam},
function(data){*/
//doe nog iets
aa= data.status;
bb=data.naam;
//krijg de instellingen terug
alert(aa);
alert(bb);
}});
//php section
if(isset($_GET['actie'])){
**$n=$_POST['gebruikersnaam'];**
if ($_GET['actie']=="sessiegebruikersnaam"){
if (!isset($_SESSION['username'])){
$_SESSION['username'] = $n ;}
header('Content-type: application/json');
//geef ook meteen de secondary instellingen terug
?>
{
"status": "somevalue",
"naam": "anothervalue"
}
<?php
exit(0); // Stop het script.
}
}
thanks, Richard