Categories

Importance of a coming soon page for a website

TweetShare(function() {var s = document.createElement(‘SCRIPT’), s1 = document.getElementsByTagName(‘SCRIPT’)[0];s.type = ‘text/javascript’;s.async = true;s.src = ‘http://widgets.digg.com/buttons.js’;s1.parentNode.insertBefore(s, s1);})();

A Coming Soon page is an important if not a necessary step during website development. The coming Soon page usually comes at the end of website development when the website has been developed and is in the testing/quality assurance stage. [...]

How to add reCAPTCHA to your website?

TweetShare(function() {var s = document.createElement(‘SCRIPT’), s1 = document.getElementsByTagName(‘SCRIPT’)[0];s.type = ‘text/javascript’;s.async = true;s.src = ‘http://widgets.digg.com/buttons.js’;s1.parentNode.insertBefore(s, s1);})();

If you would like to add CAPTCHA to your website then reCAPTCHA is a nice choice for you. Its very easy to use and the best part is that once you register on their website you can use the same [...]

How to display tweets from Twitter on your website?

TweetShare(function() {var s = document.createElement(‘SCRIPT’), s1 = document.getElementsByTagName(‘SCRIPT’)[0];s.type = ‘text/javascript’;s.async = true;s.src = ‘http://widgets.digg.com/buttons.js’;s1.parentNode.insertBefore(s, s1);})();

If you tweet a lot on Twitter and wish to display them on your website or blog then you can do that easily with the following code

<?php

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, “http://twitter.com/statuses/friends_timeline.xml”); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); [...]