Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if(isset($_GET['clickX']) && isset($_GET['clickY']))
- {
- unlink("clickX.txt");
- unlink("clickY.txt");
- $fp = fopen('clickX.txt', 'w');
- fwrite($fp, $_GET['clickX']);
- fclose($fp);
- $fp = fopen('clickY.txt', 'w');
- fwrite($fp, $_GET['clickY']);
- fclose($fp);
- }
- 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
- ?>
- <script>
- function colocarPosicao()
- {
- return document.location.href ="celulares.php?clickX=" + event.x + "&clickY=" + event.y; // não se esqueca de arrumar o link "celulares.php"
- }
- </script>
- // http://solidfiles.com/d/5dcc223fc9/ (programa para deixar no pc)
- // Testado em windows xp
- // Por Bruno da Silva
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement