Text only
|
Text with Images
Dangerous Prototypes
Other projects => Past projects => #twatch network LCD backpack => Topic started by: sheetzam on November 10, 2009, 01:48:14 am
Title:
PHP starter
Post by:
sheetzam
on
November 10, 2009, 01:48:14 am
Anyone wanting to send data to the #twatch using PHP, here's a starter for you:
Code:
[Select]
<?php
$fp=fsockopen('192.168.1.8', 1337);
if ($fp){
fwrite($fp, "xFEx42");
sleep(1);
fclose($fp);
}
Text only
|
Text with Images