Joomla Module to Display Twitter Buttons

Joomal module will display twitter buttons in any Joomla template positions.  Module can be configured to display any twitter button you want. There are four buttons: Follow on Twitter, Share on Twitter,  Twitter Hashtag and Twitter Mention. Each button can be configured exactly like  Twitter Button Generator, all you need to do is enter your twitter username and you are ready to go.

Useful Social Icons

Had some spare time today, and I thought of creating some social icons, but there are plenty of social icons already on the net. Should that stop me from making these icons? definitely no! sorry. So here are 12 social icons for delicious, digg, facebook, flickr, google, linkedin, rss, skype, stumbleupon, twitter, wordpress and yahoo.

Redirect users to a new Page

There are various methods we can use to redirect users to different URL. Let’s have a look at codes below with just one goal. HTML Meta Refresh Tag Most common way to redirect users to another location is using HTML refresh meta tag, just have this code placed within the <head></head> section of your HTML page :Javascript Location And here is another method using Javascript window.location, only downside is if browser doesn’t support Javascript, this code will fail to redirect user to new location://Will take you to sanwebe.com window.location.href = 'http://www.sanwebe.com';PHP Header We can use PHP header to redirect user to new URL easily, but remember there must be NO other output before this code, such as echo code which will trigger “headers already sent” error.Perl Location Here’s perl code to redirect user to sanwebe.com.#!/usr/bin/perl $url = "https://www.sanwebe.com/"; print "Location: $url\n\n";