- Katılım
- 8 Mayıs 2009
- Mesajlar
- 2,717
- Reaksiyon puanı
- 227
- Puanları
- 243
Arkadaşlar elimde iletisim.html var.Buradan mail yollamak için contact.php ye bağlanması lazım ama contact.php yi nasıl ayarlayabilirim ? Aşağıda iletisim.html kodlarını koyuyorum
Kod:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>İletişim</title>
<meta http-*****="content-type" **********text/html; charset=utf-8" />
<meta http-*****="imagetoolbar" **********no" />
<meta name="keywords" **********" />
<meta name="description" **********" />
<meta name="author" **********" />
<meta name="copyright" **********" />
<meta name="revisit-after" **********3 days" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<!--[if IE]><link href="css/ie-transparency.css" rel="stylesheet" type="text/css" /><![endif]-->
</head>
<body>
<ul class="hide"><li><a href="#body">Skip to content</a></li></ul>
<div id="container">
<div id="header">
<h1> </h1>
</div>
<div id="body">
<ul id="nav">
<li class="first"><a href="index.html">Anasayfa</a></li>
<li><a href="kimdir.html">Kimdir ?</a></li>
<li><a href="http://blog.muhammetcelebi.com/">Blog</a></li>
<li><a href="nedir.html">Nedir ? </a></li>
<li class="on"><a href="iletisim.html">İletişim</a></li>
</ul>
<div id="content"><div>
<div id="main">
<h2>İletişim</h2>
<p> </p>
<form method="post" action="contact.php">
<fieldset>
<legend>Contact form</legend>
<p><label for="name">Name: </label><input type="text" name="name" id="name" /></p>
<p><label for="email">Email: </label><input type="text" name="email" id="email" /></p>
<p><label for="subject">Subject: </label>
<select name="subject" id="subject">
<option value="Enquiry">Enquiry</option>
<option value="Support">Support</option>
<option value="Report bug">Report bug</option>
<option value="Other">Other</option>
</select>
</p>
<p><label for="message">Message: </label><textarea name="message" id="message" cols="40" rows="10"></textarea></p>
<p><label> </label> <input type="submit" value="Send" class="btn" /></p>
</fieldset>
</form>
</div>
</div></div>
</div>
<div id="footer"></div>
</div>
</body>
</html>