Guest User

Untitled

a guest
May 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php
  2. if(!$_POST[perfis]) {
  3. ?>
  4. <html>
  5. <title>MassRetweet</title>
  6. <head>
  7. <style type="text/css">
  8. #btn
  9. {
  10. background: transparent;
  11. border: solid thin;
  12. -moz-border-radius: 3px;
  13. -webkit-border-radius: 3px;
  14. border-radius: 3px;
  15. font-family: Verdana;
  16. width: 300px;
  17. }
  18. #follow
  19. {
  20. background: transparent;
  21. border: solid thin;
  22. -moz-border-radius: 3px;
  23. -webkit-border-radius: 3px;
  24. border-radius: 3px;
  25. font-family: Verdana;
  26. }
  27. textarea
  28. {
  29. width: 400px;
  30. height: 320px;
  31. }
  32. .work
  33. {
  34. font-weight: bold;
  35. color: green;
  36. }
  37. .notwork
  38. {
  39. font-weight: bold;
  40. color: red;
  41. }
  42. a
  43. {
  44. color: #000000;
  45. font-weight: bold;
  46. }
  47. </style>
  48. <script type="text/javascript">
  49. function countFakes()
  50. {
  51. document.getElementById("count").innerHTML =
  52. document.getElementById("perfis").value.split("\n").length;
  53. }
  54. </script>
  55. </head>
  56. <center>
  57. <form method="POST" action="">
  58. <textarea name="perfis" id="perfis" onkeydown="countFakes()" onchange="countFakes()"></textarea><br />
  59. <font id="count" style="font-weight: bold;">0</font>&nbsp;Perfis inseridos.<br /><br />
  60. <font face="Verdana">Id do Tweet</font><br />
  61. <input type="text" name="id" id="id" /><br /><br />
  62. <input type="submit" value="Retwittar" id="btn">
  63. </form>
Add Comment
Please, Sign In to add comment