NSA
sudo apt-get thefuckout.tar.gz
- Dec 9, 2011
- 715
- 86
Hello,
I remember in UberCMS you used to be able to send Hotel alert's from the ASE.
I tried to re-create it, but I can't seem to get it working.
Can anyone see anything wrong with my code?
I remember in UberCMS you used to be able to send Hotel alert's from the ASE.
I tried to re-create it, but I can't seem to get it working.
Can anyone see anything wrong with my code?
PHP:
<?php
$fp = fsockopen("udp://127.0.0.1", 1232, $errno, $errstr);
if (!$fp) {
echo "ERROR: $errno - $errstr<br />\n";
} else {
fwrite($fp, ":ha Hello!");
echo fread($fp, 1232);
fclose($fp);
}
?>