well you can make your own forms... there is tons of tutorials out there... and then style them with css, eric meyer has written alot on styling forms with css.
<? $sysmail = "you@yourdomain.com"; if ($_POST['sendmessage']) { if(!isset($_POST['message'])) { $messages = "You're email needs to contain a message, dummy!!!<br>"; } elseif(!preg_match("/^.*?@.*?$/", $_POST['email'])) { $messages = "Stop trying to trick me and use a real email, or me and you will fall out!!<br>"; } elseif(mail($sysmail, stripslashes(trim($_POST['subject'])), stripslashes(trim($_POST['message'])), "From: " . $_POST['email'] . "\r\n")) { $messages = "Thanks for your message someone will get back to you shortly.<br>"; } else { $messages = "The programmer who wrote this isn't as clever as he thinks, and something has gone wrong.<br>"; } } ?> <h2>Contact Form</h2> <form action="" method="post"> <span style="color:#FF0000; font-weight:bold;"><?=$messages ?></span> <table width="50%" border="0"> <tr> <td width="50%" valign="top"><div align="right"><strong>Your Email Address : </strong></div></td> <td width="50%" valign="top"><input type="ext" id="email" name="email" size="50"/></td> </tr> <tr> <td valign="top"><div align="right"><strong>Message Subject : </strong></div></td> <td valign="top"><input type="ext" id="subject" name="subject" size="50"/></td> </tr> <tr> <td valign="top"><div align="right"><strong>Your Message </strong></div></td> <td valign="top"><textarea name="message" cols="50" rows="10" id="message"></textarea></td> </tr> <tr> <td colspan="2" valign="top"><div align="center"> <input type="submit" value="Send Message"> </div></td> </tr> </table> <input type="hidden" name="sendmessage" value="1"> </form> PHP: save is as php and <? inlcude("filename.php"); ?> in your page, or copy it to it's own html page, there are no headers on the page.....
You can use also one of those remotely form processing service. You can design your contact form and get the HTML form code at the end. I use 123 Contact Form and their free plan pretty much covers all my needs.
This is the form that I wrote for my form submission that will email a lead to me, you can customize it as you wish, but it should get the job done for you. <?php $txtname = $_POST['txtname']; $txtemail = $_POST['txtemail']; $txtmessage = $_POST['txtmessage']; $message = ' Name: '.$txtname. ' Email: '.$txtemail. ' Message: '.$txtmessage; mail( "youremail@email.com", "New Message For Your Company", $message, "From: ".$txtemail ); header('Location: http://www.YourCompany.com/thanks.html'); ?> Code (markup):
123contactform.com is great easy ti setup , user friendly http://www.moomstore.com/contact-us/info_2.html
use free cms system s and get the full balance yes search on google you will get the best result.aso try other programmers suggestions it will be great
A simple way is to embed the Google Drive contact form. Visit your Google Drive, create a form and embed it into your website. Check messages in your drive. ____________________________________________________________________ Technology Reviews, Tricks, How-to's