I learned my way around HTML and CSS, but forms is something that I simply have never had to handle before - but now I need to learn.
Does anyone have any recommendations of a HTML template with a script that I could use?
Or, recommend a simple script that easy to implement?
Easy meaning for someone who has rarely ever used scripts, cannot program, but can do HTML, CSS, and editing stuff when required?
If you can create a html form that creates variables, you can use this type of script to email the contents.
PHP Code:
<?
//Must have header info
$header = "From: [email]email@email.com[/email]";
//Your subject Line
$subject = "Subject Line";
//what you want in the body of the email, just add your variable names from the form
$response_mail1 = "$Form_field_1, $droptdownbox, $radio_button";
//the function to mail it
mail("$row","$subject","$response_mail1","$header");
?>