Jump to content

Tutorial Creare Script De Contact


gaby

Recommended Posts

Faceti doua fisiere(de exemplu):

- contact.html
- mail.php
Mare atentie la extensile de mai sus, este vorba de html si php !

In contact.html adaugati:

<form name="pctroubleshooting.ro" action="mail.php" method="post">
<tr>
<td colspan="2">
Nume:&nbsp;&nbsp;&nbsp;<input type="text" name="nume" size="39"><font color="#FF0000">*</font></td><br>
</tr>
<tr>
<td colspan="2">
Email:&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="email" size="39"><font color="#FF0000">*</td></font><br>
</tr>
<tr>
<td colspan="2">
Mesaj:&nbsp;&nbsp;&nbsp;<textarea rows="10" name="mesaj" cols="30"></textarea><font color="#FF0000">*<br>
</tr>
<tr>
<td><input type="submit" value="Trimite Cererea" name="trimite"></td>
</tr>
</form>

In mail.php adaugati:

<?php
$email = 'emailul tau@sursa.com';
$subiect = 'Subiect';

$nume = $_POST['nume'];
$mail = $_POST['email'];
$mesaj = $_POST['mesaj'];

if($nume=="") exit("Va rugam specificati numele dumneavoastra.");
if($mail=="") exit("Va rugam specificati un email pe care doriti sa va contactam.");
if($mesaj="") exit("Va rugam scrieti un mesaj");

$continut = 'Nume: $nume nMail: $mail nMesaj: $mesaj';


mail($email, $subiect, $continut);
echo "Emailul a fost trimis. <a href='index.php'>INAPOI</a>";
?>

Vedeti si un alt formular de contact aici: http://www.marplo.net/php-mysql/formular_contact-s.php

 

Succes :pct2:

  • Upvote 1

Te-ai inregistrat? Ne-ar placea sa te prezinti.

Cum pot sustine forumul?
Cumpara de la eMag folosind acest link.
--------------------
oG2BN9d.gifse1WdXd.gifQG6MtmI.gifRHYjDzD.gifG5p1wui.gif

Link to comment
Share on other sites

  • 2 months later...

  • 7 months later...
  • 5 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • 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.