mavac Posted March 12, 2009 Share Posted March 12, 2009 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: Test@test.com' . "\r\n"; mail($to,$subject,$message,$headers); ?> Quote Link to comment https://forums.phpfreaks.com/topic/149069-need-help-with-php-html-form/ Share on other sites More sharing options...
sKunKbad Posted March 12, 2009 Share Posted March 12, 2009 If all there is is two choices, then just use a simple if statement: if($_POST['name'] == "Joe"){ $image = "joe.jpg"; }else{ $image = "mike.jpg"; } echo "<img src='$image' />"; Quote Link to comment https://forums.phpfreaks.com/topic/149069-need-help-with-php-html-form/#findComment-782772 Share on other sites More sharing options...
mavac Posted March 12, 2009 Author Share Posted March 12, 2009 Worked great. Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/149069-need-help-with-php-html-form/#findComment-782779 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.