Webmaster tools |
language |
|
|
|
Free Comment Box |
|
Elevating the discussion, anywhere on the web.
With a few quick steps, you can turn your old comment system into a new way to engage your visitors.From small blogs to massive websites, Disqus is the easiest way to build active communities. It's free to use and works with virtually any type of website.
Moderation Dashboard Many comments are great but some are not, and we know moderating comments isn’t your favorite part of building communities. So we put real effort into making moderation as easy as possible. Our moderation panel in the Disqus admin is built for sites that have lots of commenting activity, and this version makes it easier to read and act on many comments in a single pass. We've also made it easy to moderate directly in the comment system itself. |
html Comment Box |
|
This HTML Comment Box lets you receive and moderate comments on your website.
Moderate Your Comments: Log in to your Google account before copying the above code if you want to be able to delete unwanted comments you receive. |
Beautiful Classifieds sites |
|
Open Classifieds is web software you can use to create a beautiful classifieds or listings. We like to say that Open Classifieds is both free and priceless at the same time.
The core software is built by a community of volunteers, and when you’re ready for more there are themes available to transform your site into anything you can imagine.
Over 150K people have chosen Open Classifieds to power their classifieds sites. Try it now for free, you only need a web hosting.click»Download |
Creating simple PHP contact form |
|
create 2 files: contact.php , send_contact.php
Create file contact.php
############### Code Start <table width="400" border="0" align="center" cellpadding="3" cellspacing="1"> <tr> <td><strong>Contact Form </strong></td> </tr>
</table>
<table width="400" border="0" align="center" cellpadding="0" cellspacing="1"> <tr> <td><form name="form1" method="post" action="send_contact.php"> <table width="100%" border="0" cellspacing="1" cellpadding="3"> <tr> <td width="16%">Subject</td> <td width="2%">:</td> <td width="82%"><input name="subject" type="text" id="subject" size="50"></td> </tr> <tr> <td>Detail</td> <td>:</td> <td><textarea name="detail" cols="50" rows="4" id="detail"></textarea></td> </tr> <tr> <td>Name</td> <td>:</td> <td><input name="name" type="text" id="name" size="50"></td> </tr> <tr> <td>Email</td> <td>:</td> <td><input name="customer_mail" type="text" id="customer_mail" size="50"></td> </tr> <tr> <td> </td> <td> </td> <td><input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"></td> </tr> </table> </form> </td> </tr> </table>
############### Code End |
|
Create file send_contact.php
|
|
|
|
|