Jump to content

Need help with PHP & html form


mavac

Recommended Posts

Hello, I am very new to php and am attempting to build a form that will result in an email. This email would be a business greeting email including an employee name and picture. I am able to output the name but have no clue on how to separate the image html when employee 1 or 2 is selected. Any help would be greatly appreciated.

 

Here is what I have.

 

Form.php

<FORM ACTION="mail.php" method=post>

<table>
Greeting Email
<tr>
<td>Email Address:</td>
<td align="center"><input type="text" name="address" size="30" maxlength="30"></td>
</tr>
<tr>
<td>Email Address:</td>
<td align="center"><input type="text" name="address" size="30" maxlength="30"></td>
</tr>
<tr>
<td>Employee</td>
<td align="center"><SELECT NAME="name" SIZE="2" maxlength="2">
<OPTION SELECTED>Joe
<OPTION>Mike
</SELECT></td>
</tr>
<tr>
<td colspan="2" align="center"><br>
<input type="submit" value="Send Email"></td>
</tr>
</table>
</form>

</body>
</html>

 

Mail.php

<?php
$to = "$_POST[address]";
$subject = "subject";

$message = "
<html>
<head>
<title>title</title>
</head>
<body>
This email is to confirm your appointment with $_POST[name].
</body>
</html>
";

$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
$headers .= 'From: [email protected]' . "\r\n";
mail($to,$subject,$message,$headers);
?>

Link to comment
https://forums.phpfreaks.com/topic/149069-need-help-with-php-html-form/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.