Skip to content

Instantly share code, notes, and snippets.

@rlemon
Created March 8, 2012 18:39
Show Gist options
  • Save rlemon/2002580 to your computer and use it in GitHub Desktop.
Save rlemon/2002580 to your computer and use it in GitHub Desktop.
php and js for chat room
// 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