co.ador Posted April 2, 2011 Share Posted April 2, 2011 like contact form is there a help standard you guys might suggest? Link to comment https://forums.phpfreaks.com/topic/232476-is-there-an-standard-help-page/ Share on other sites More sharing options...
JasonLewis Posted April 2, 2011 Share Posted April 2, 2011 Could you elaborate a tad bit more please? Re-reading your questions leaves me even more confused. Link to comment https://forums.phpfreaks.com/topic/232476-is-there-an-standard-help-page/#findComment-1195854 Share on other sites More sharing options...
Jnerocorp Posted April 2, 2011 Share Posted April 2, 2011 if you mean like is there a standard way to create php page where someone can easily contact you for help then... no there is no "standard" help page but you can make a contact form like this: <?php if(isset($_POST['send'])) { $user_email = $_POST['email']; $subject = $_POST['subject']; $message = $_POST['message']; $webmaster_email = "[email protected]"; $to = '' .$user_email .''; $subject = '' . $subject . ''; $message = '' . $message .''; $headers = 'From: ' . $webmaster_email . '' . "\r\n" . 'Reply-To: ' . $webmaster_email . '' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); } else { echo "Subject: <input type='text' name='subject'><br>"; echo "Message:<br> <textarea name='message'></textarea><br>" echo "Your Email: <input type='text' name='email'><br>"; echo "<input type='submit' name='send' value='Send'>"; } ?> just change "[email protected]" to your email. Link to comment https://forums.phpfreaks.com/topic/232476-is-there-an-standard-help-page/#findComment-1195882 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.