Created
March 8, 2012 18:39
-
-
Save rlemon/2002580 to your computer and use it in GitHub Desktop.
php and js for chat room
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// javascript | |
var myvar = "apples"; | |
$("#lastpost").load("/message/userFeed.php?id=foo&name=bar&myvar=" + myvar); | |
// userFeed.php | |
<?php | |
die($_GET); | |
?> | |
// ouput | |
Array ( | |
['id'] => 'foo', | |
['name'] => 'bar', | |
['myvar'] => 'apples' | |
) | |
// get it?!?!?!?! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment