i'm new on this codding and i would like to see how the css form works i just dont know how lo link it to my e-mail so that i could recieve the feedfack
![]()
i'm new on this codding and i would like to see how the css form works i just dont know how lo link it to my e-mail so that i could recieve the feedfack
![]()
Actually sending the mail is not a CSS issue. You need something like a PHP script that handles the form submission, parses the data from the form and emails it to you. You'd reference the script in the form's action="" line right after the <form spot. Like this:
<form action="sendmail.php" method="POST">
form fields and stuff
</form>
Bookmarks