Jump to content
BlackMamba

Problema in HTML

Recommended Posts

Salut RST. De cateva zile lucrez la un website si acum am o mica mare problema .

Vreau sa pun un formular

<form action="???????" method="post">

Nume:<input type="text" name="nume">

Prenume:<input type="text" name="prenume"><br>

<input type="submit" value="Trimite">

</form>

intrebarea mea este cum fac ca atunci cand se apasa butonu trimite sa primesc un mail cu datele completate din formular ? Mentionez ca nu stiu sa fac un script cgi !

Link to comment
Share on other sites

Salut RST. De cateva zile lucrez la un website si acum am o mica mare problema .

Vreau sa pun un formular

<form action="??????" method="post">

Nume:<input type="text" name="nume">

Prenume:<input type="text" name="prenume"><br>

<input type="submit" value="Trimite">

</form>

intrebarea mea este cum fac ca atunci cand se apasa butonu trimite sa primesc un mail cu datele completate din formular ? Mentionez ca nu stiu sa fac un script cgi !

$nume = $HTTP_POST_VARS['nume'];

$prenume = $HTTP_POST_VARS['prenume'];

$subj = "User inregistrat";

$msg = "Nume:$nume\nPrenume:$prenume";

$email = "mail@mail.com";

mail($email, $subj, $msg);

pui asta in <form action="???????.php"

Link to comment
Share on other sites

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.



×
×
  • Create New...