Jump to content

Dreamweaver Da Iletişim Formuma Yazılanlar Outlook


Recommended Posts

Arkadaşlar dreamweaver da iletişim formuma yazılanlar mail adresime gelsin istiyorum bunu nasıl yapabilirim?

Kullandığım kod:

[CODE]
<form id="form1" name="form1" method="post" action="gonder.php">
<table width="50%" border="0">
<tr>
<td width="38%">Email Adresiniz</td>
<td width="62%"><label>
<input type="text" name="email" id="email" />
</label></td>
</tr>
<tr>
<td>İletmek İstediğiniz Mesaj</td>
<td><label>
<textarea name="mesaj" id="mesaj" cols="45" rows="5"></textarea>
</label></td>
</tr>
<tr>
<td>&nbsp;</td>
<td><label>
<input type="submit" name="gonder" id="gonder" value="- Gönder - " />
<input type="reset" name="temizle" id="temizle" value="- Temizle -" />
</label></td>
</tr>
</table>
</form>
[/CODE]


Bu da gonder.php

[CODE]
<?php
$email = $_POST[email];
$mesaj = $_POST[mesaj];

echo "Gönderenin Email Adresi:" . $email ."<br>" ;
echo "Bize bıraktığı mesaj:" . $mesaj . "<br>" ;

?>
[/CODE] Edited by maxi_cex
Link to comment
Share on other sites

  • 4 hafta sonra ...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...