Guest User

Untitled

a guest
May 9th, 2010
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2. if (isset($_POST['command']))
  3.  
  4. {
  5. $command = $_POST['command'];
  6. $file = fopen("/dev/ttyS0","w");
  7. fwrite($!$file,$command);
  8. fclose($file);
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment