Saturday, October 30, 2010

Stat Counters

A free yet reliable invisible web tracker, highly configurable hit counter and real-time detailed web stats. Insert a simple piece of code on your web page or blog and you will be able to analyse and monitor all the visitors to your website in real-time!

* Free, Fast, Responsive, Quick loading and Reliable Service.
* Invisible Tracking - no ads on your website.
* Accurate real-time website statistics with detailed visitor tracking and analysis.

Website to get Code: http://statcounter.com

Fusion Charts

FusionCharts helps you create animated & interactive charts for web & enterprise applications. It is the industry's leading enterprise-grade charting component that functions seamlessly on PCs, Macs, iPads, iPhones and a majority of other mobile devices.

FusionCharts leverages Flash and JavaScript (HTML5) to create stunning charts, and works with both XML and JSON data. It can be integrated with any server-side technology (ASP, ASP.NET, PHP, JSP, ColdFusion, Ruby on Rails etc.) and database. FusionCharts is used by 17,000 customers and 330,000 users in over 110 countries to add "wow" to their applications.

View More Info

Wednesday, October 13, 2010

Profile Of Sachin

Full Name : Sachin Ramesh Tendulkar
Born : April 24, 1973, Bombay (now Mumbai), Maharashtra
Age : 37 years 172 days
Teams played for : India, Asia XI, Mumbai Indians, Mumbai
Known as : Tendlya, Little Master
Batting Style : Right-hand bat
Bowling Style : Right-arm legbreak
Height : 5 ft 5 in
Education : Sharadashram Vidyamandir School

Monday, October 11, 2010

How can we insert a favicon icon or image into the url

1. Create a 16 pixel by 16 pixel image and save it as a png file.
2. In the head section insert the following code:
<link rel="icon" type="image/png" href="http://yourdomain.com/myicon.png" />

Friday, October 8, 2010

Second Test Between India & Australia at Banglore

Match starts at 09:30 IST on Oct 09, 2010.
Teams:
India : Virender Sehwag, Murali Vijay, Rahul Dravid, Sachin Tendulkar, VVS Laxman, Suresh Raina, MS Dhoni(w/c), Harbhajan Singh, Zaheer Khan, S Sreesanth, Pragyan Ojha, Abhinav Mukund, Amit Mishra, Jaidev Unadkat, Cheteshwar Pujara
Australia : Simon Katich, Shane Watson, Ricky Ponting(c), Michael Clarke, Michael Hussey, Marcus North, Tim Paine(w), Mitchell Johnson, Nathan Hauritz, Ben Hilfenhaus, Doug Bollinger, Steven Smith, Peter George, Phillip Hughes, James Pattinson, Mitchell Starc
Series Status: India leads by 1-0. 

Tuesday, October 5, 2010

Result of India Vs Australia First Test at Chandigarh

India vs Australia, 1st Test
Chandigarh, October 01, 2010 
Umpires :Ian Gould, Billy Bowden
Match Referee :Chris Broad
Toss :Australia(Elected to bat)
Man of the Match :Zaheer Khan
Match Status :India won by 1 wkt

Monday, October 4, 2010

First Test at Chandigarh Between India & Australia

Venue:- Punjab Cricket Association Stadium, Chandigarh

October 1-5, 2010
Australia won the toss and elected to bat
Australia Ist Inning: 428
India Ist Inning: 405
Australia IInd Inning: 192
India IInd Inning: 55/4(17.0 Ovs) (On Day 4 Stumps)

India need 161 runs to win on day 5.
All the best India

Saturday, October 2, 2010

Websites for Online Rechrage

Hello friends,
This is era of web technologies. Everything is going to be online. So how mobile phones can be behind. You can make online recharge of your mobile phones. Here I am going to share some websites on which you can recharge your mobile online after registration. Many times we want immediate credit into our account, so you have no need to go to any shop for recharge, you can use these website for recharging your mobile online anywhere anytime. You can use your credit card, debit card or online bank transfer to recharge.
Websites are:
www.rechargeitnow.com
www.rechargeguru.com
www.oxicash.in
www.fastrecharge.com
www.mobilerechargeindia.com
www.easymobilerecharge.com

PHP Class for Creating Captcha Image

 Here is the php code of generating captcha image. Enjoy it.
class GenerateCaptcha
{
    protected $ImageName  = 'captcha.jpeg'; // Background Image
    protected $Path = './ImageFolder/captcha';   
        protected $CaptchWord;
   
        public function getFolderPath ()
    {
            return $this->Path;
        }

        public function getCaptchaPath()
    {
        return $this->Path.'/'.$this->ImageName;
        }

        public function getUrlCaptcha()
    {
        return $this->Path.'/'.$this->ImageName;
    }

        public function getWord()
    {
            if(!$this->CaptchWord)
        {
            $RandomStr = md5(microtime());
            $this->CaptchWord = substr($RandomStr,0,6);
        }
        return $this->CaptchWord;
    }

       public function check($key)
    {
        return $_SESSION['captcha'] == $key ;
    }
   
    public function createCaptcha()
    {
        try
        {
            $this->createDir($this->getFolderPath());
            if(is_file( $this->getCaptchaPath()))
            {
                unlink ( $this->getCaptchaPath());
            }
            $NewImage =imagecreatefromjpeg($this->getFolderPath().'/bg-captcha.jpg');//Background Image For Captcha
            $LineColor = imagecolorallocate($NewImage,233,239,239);
            $TextColor = imagecolorallocate($NewImage, 255, 255, 255);
            imageline($NewImage,1,1,40,40,$LineColor);
            imageline($NewImage,1,100,60,0,$LineColor);
            imagestring($NewImage, 7, 20, 10, $this->getWord() , $TextColor); 
            $_SESSION['captcha'] = $this->getWord();
            imagejpeg($NewImage, $this->getCaptchaPath());
        }
        catch(Exception $e)
        {
            echo $e->getMessage();
        }
    }

    protected function createDir($dir)
    {
        if(!is_dir($dir))
        {
            if(!mkdir($dir, 0755, true))
            {
                throw new Exception(' Error when create folders ');
                return false;
            }
        }
        return true;
    }
}