Skip to content

Instantly share code, notes, and snippets.

@davidcoallier
Created May 3, 2011 06:42
Show Gist options
  • Save davidcoallier/952909 to your computer and use it in GitHub Desktop.
Save davidcoallier/952909 to your computer and use it in GitHub Desktop.
arduino.php
<?php
$users = array(
'f884624f' => 'Jonathan',
);
$received = $_GET['tag'];
if (array_key_exists($received, $users)) {
echo 'Hi ' . $users[$received];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment