I am having trouble with my PHP form. Where do I put the email address to receive the content from the contact form
[php]<?php
/*
- A Design by W3layouts
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
*/
$userName=$_REQUEST[‘userName’];
$userEmail=$_REQUEST[‘userEmail’];
$userPhone=$_REQUEST[‘userPhone’];
$userMsg=$_REQUEST[‘userMsg’];
$subject = "Message from ".$userName;
$message = ‘’.$subject.'
Email id : | ‘.$userEmail.’ |
Phone No : | '.$userPhone.' |
Name : | '.$userName.' |
Says : | '.$userMsg.' |
} ?>[/php]