SecretR
5 Apr 2007, 10:26 AM
Hi folks,
First - really great job guys!
I'm not sure I should post it here but there is a small error in the Introduction tutorial. The Ajax example sends POST and not GET query. So the php code:
<? if(isset($_GET['name'])) {
echo 'From Server: '.$_GET['name'];
}
?> should be
<? if(isset($_POST['name'])) {
echo 'From Server: '.$_POST['name'];
}
?> It can be confused for not experienced users :D
First - really great job guys!
I'm not sure I should post it here but there is a small error in the Introduction tutorial. The Ajax example sends POST and not GET query. So the php code:
<? if(isset($_GET['name'])) {
echo 'From Server: '.$_GET['name'];
}
?> should be
<? if(isset($_POST['name'])) {
echo 'From Server: '.$_POST['name'];
}
?> It can be confused for not experienced users :D