i visited your site, am a beginner in php, Please can u help me with php script (if its what u used) u used for your contact page. ie for one to send u mail messages. Or how can viewer send info to me via the website. i would appreciate your help.
--------------------------------Beginning----------------------------------------------
<?php
if(isset($_REQUEST['email']) && $_REQUEST['email']!=""){
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
mail( "
your-email@where-you-want-it-to-go.com", "Feedback Form Results",
$message, "From: $email" );
$emailSent=1;
}
?>
<?php if($emailSent){echo "Thanks for contacting us";}else{?>
<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
Email: <input name="email" type="text" /><br />
Message:<br />
<textarea name="message" rows="15" cols="40">
</textarea><br />
<input type="submit" />
</form>
<?php }?>
----------------------------------------------------------END------------------------------------------------------------------
the only thing you need to edit is the part in bold