What to do if I don’t have images to include in my blog post and articles?

Without images blog articles would look dull. To have colorful look for an article even if you don’t have an image just do some simple thought process and make your article/post colorful and that too with image. You can do two things. Firstly, search for an image which is related to a keyword in your … Read more

Create Job Description for Web Product Manager

While Creating a Job Description (JD) one should gather various requirements of the product.  After preparing such a list go though the following requirements and check if you have missed any of the requirements that are required for a profile/position of Web Product Manager and Process Owner. Depending on the requirements and project need it … Read more

How to Increase Email Delivery Rate in Email Marketing promotion

Email Marketing and promotion using Email Campaigns is now on boom. Getting good results with Email Marketing is not easy and success is measure in terms of different aspects though the ultimate target is either getting more clients, customers, users or a lead generation, purchase, registration. The success depends on various stats and figures associated … Read more

How to implement Dynamic CSS Sprite Painting effect using CSS and PHP

It is very easy to give a painting effect to images on your website. Just use simple CSS Sprite logic only or use PHP (or other scripting language like ASP etc.) with CSS Sprite to make it easy and more dynamic. Read more about this effect at Dynamic CSS Sprite implementation gives a Painting effect … Read more

How to send a Feedburner Email Subscription Reminder

When your users subscribe to your newsletters using services like Feedburner or some other service which sends email on regular basis composed by you or by using feeds or RSS, many times it happens that users does not activate their subscription i.e. they do not confirm their subscription after the 1st opt-in step. Generally, there … Read more

How to read an RSS Feed using PHP

There are many ways 2 read XML Feed using PHP. Some basic ways with which this can be done are given below along with code: Basic Way 1 [php] <?php function getFeed($feed_url) { $content = file_get_contents($feed_url); $x = new SimpleXmlElement($content); echo "<ul>"; foreach($x->channel->item as $entry) { echo "<li><a href=’$entry->link’ title=’$entry->title’>" . $entry->title . "</a></li>"; } … Read more

Captcha PHP Script

About (in brief) It does not require images but works on text. Now you can protect your pages with the use of Captcha, you can now have some additional security/authetication/nospam to your web pages. Description An easy to implement Captcha Script which does not require images but works on text. Now you can protect your … Read more