Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.40K
~252 People Reached
Favorite Forums
Favorite Tags
php x 1
Member Avatar for istore221

<?php $user_name = $_POST["NameBox"]; $user_contact = null; $user_contact=$_POST["ContactBox"]; $comment = $_POST["msgbox"]; if($user_contact==null) { $user_contact = "Not provided"; } $to = "mymail@domain.com"; $subject = "Message From Web"; $body = "Contact name is = $user_name | Contact number is = $user_contact | user comment is = $comment"; mail($to,$subject,$body); header("Location:http://www.masconsolidated.com/confirmation.html"); exit; ?> this …

Member Avatar for Anuradha_2
0
252