Jump to content

oceanfear

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

oceanfear's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I used the code you wrote, but nothing changes. The adress line changes like this .............index.php?searchfor=Arama&txtname=&txtemail=&submit=Submit (also same in my code) I think it isnt becouse of the code, it is becouse of the page, I have a diffrent problem I thougt? But what?
  2. I have a problem with my email form. It works fine but now seems to have problem. I couldnt fix it, any idea? Iam sending the code. İletişim.php <form name="form1" method="POST" action="mailsend"> <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td colspan="2" bgcolor="#FFFFFF" class="style5"><strong>Mail Formu<strong></td> </tr> <tr> <td width="26%" bgcolor="#FFFFFF" class="style5">Adýnýz Soyadýnýz </td> <td width="74%" bgcolor="#FFFFFF" class="style5"><input name="ad" type="text" id="ad" size="40"></td> </tr> <tr> <td bgcolor="#FFFFFF" class="style5">Mail Adresiniz </td> <td bgcolor="#FFFFFF" class="style5"><input name="email" type="text" id="email" size="40"></td> </tr> <tr> <td bgcolor="#FFFFFF" class="style5">Telefon Numaranýz </td> <td bgcolor="#FFFFFF" class="style5"><input name="tel" type="text" id="tel" size="40"></td> </tr> <tr> <td bgcolor="#FFFFFF" class="style5">Mesajýnýz</td> <td bgcolor="#FFFFFF" class="style5"><textarea name="mesaj" cols="40" rows="5" id="mesaj"></textarea></td> </tr> <tr> <td colspan="2" bgcolor="#FFFFFF" class="style5"><div align="center"> <input type="submit" name="Submit" value="Formu Gönder"> Send.php $mail_text="<html> <head> <title>Mail</title> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-9\"> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1254\"> <style type=\"text/css\"> <!-- td { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px} --> </style> </head> <body bgcolor=\"#FFFFFF\" text=\"#999999\" leftmargin=\"0\" topmargin=\"0\"> <table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" width=\"443 bordercolorligth=\"#000000\" bordercolordark=\"#FFFFFF\"\"> <tr> <td colspan=2 height=\"18\" bgcolor=\"#EBEBEB\"> <b>Iletisim Formu</b></td> </tr> <tr> <td height=\"28\"><b> Adi - Soyadi</b></td> <td width=\"285\" height=\"28\"><b>$ad</b></td> </tr> <tr> <td height=\"25\"><b>Telefon Numarasý</b></td> <td width=\"285\" height=\"25\"><b>$tel</b></td> </tr> <tr> <td height=\"25\" valign=\"top\"><b>E-Mail Adresi</b></td> <td width=\"285\" height=\"25\"><b>$email</b></td> </tr> <tr> <td height=\"25\" valign=\"top\"><b>Mesaj</b></td> <td width=\"285\" height=\"25\"><b>$$mesaj </b></td> </tr> </table> </body> </html>"; $headers = "From: ............... <.......@...............>\n"; $headers .= "Return-Path: <......@..........>\n"; $headers .= "Content-Type: text/html\n"; $recipient="........@.............."; $konu="...................... - $ad"; $sonuc = @mail($recipient, $konu, $mail_text, $headers); if ($sonuc) { echo "Mail formunuz gönderildi. Tesekkür ederiz. <br><br>"; } else { echo "Mail Formunuz gönderilemedi. Lütfen bir önceki sayfadan tekrar deneyiniz. <br><br> <a href=\"javascript:history.go(-1);\">«geri dönmek için tiklayiniz.</a>"; } ?> </td> </tr> And in install.php case "mailsend" : include "send.php";break;
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.