Advertisement
DraKiNs

[PHP] pcRemote Mobile (page)

Nov 20th, 2011
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.77 KB | None | 0 0
  1. <?php
  2.     if(isset($_GET['clickX']) && isset($_GET['clickY']))
  3.     {
  4.         unlink("clickX.txt");
  5.         unlink("clickY.txt");
  6.  
  7.         $fp = fopen('clickX.txt', 'w');
  8.         fwrite($fp, $_GET['clickX']);
  9.         fclose($fp);
  10.  
  11.         $fp = fopen('clickY.txt', 'w');
  12.         fwrite($fp, $_GET['clickY']);
  13.         fclose($fp);
  14.  
  15.     }
  16.  
  17.    
  18.     echo "<img src='imagemTemp.PNG' height=180 width=310 onClick='colocarPosicao(); return false;' />"; // também não se esqueca de mudar a resolução aqui
  19.  
  20. ?>
  21.  
  22. <script>
  23. function colocarPosicao()
  24. {  
  25.     return document.location.href ="celulares.php?clickX=" + event.x + "&clickY=" + event.y; // não se esqueca de arrumar o link "celulares.php"
  26. }
  27. </script>
  28.  
  29. // http://solidfiles.com/d/5dcc223fc9/ (programa para deixar no pc)
  30. // Testado em windows xp
  31. // Por Bruno da Silva
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement