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
Saurabh Gupta Blog, Find Latest information about web design and web development, Cricket News
Wednesday, October 13, 2010
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" />
2. In the head section insert the following code:
<link rel="icon" type="image/png" href="http://yourdomain.com/myicon.png" />
Labels:
Web Development
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.
Labels:
Cricket News
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 BroadUmpires :Ian Gould, Billy Bowden
Toss :Australia(Elected to bat)
Man of the Match :Zaheer Khan
Match Status :India won by 1 wkt
Man of the Match :Zaheer Khan
Match Status :India won by 1 wkt
Labels:
Cricket News
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
All the best India
Labels:
Cricket News
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
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
Labels:
Web News
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;
}
}
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;
}
}
Labels:
PHP Code
Wednesday, September 29, 2010
How to Build a Website
Step- 1: Hosting
Hosting is where you put your website and all the Web pages. While it’s possible to build a website on your personal computer and never move it online, it’s somewhat pointless. No one but you will ever be able to see it. So the first thing you’ll want to do is find a Web hosting provider.
Step- 2: Domain Name
You don’t need a domain name to put up a website. You can put up a site on free hosting or even paid hosting plans without a domain name. A domain name provides extra branding for your site and makes it easier for people to remember the URL. But domain names cost money, typically between $8 and $35 a year.
Step- 3: Plan Your Website
Once you’ve gotten a domain and decided on your URL, you can start planning your site. You need to decide:
* Type of site – Most websites are either news/information, product, or reference sites. As such they each have a slightly different focus.
* Navigation – The navigation affects the information architecture of your site.
* Content – Content is the actual pages you’ll be building.
Step- 4: Build Your Website Page by Page
Building a website requires that you work on one page at a time. To build your site you should be familiar with:
* Design Basics – The elements of good design and and how to use it on websites.
* Learning HTML – HTML is the building block of a Web page. While it’s not absolutely required, you’ll do better if you learn HTML than if you don’t.
* Learning CSS – CSS is the building block of how pages look. And learning CSS will make it easier for you to change your site’s look when you need to.
* Web Page Editors – Finding the perfect editor for your needs will help you learn design, HTML, and CSS.
Step- 5: Publish Your Website
Publishing your website is a matter of getting the pages you created in step 4 up to the hosting provider you set up in step 1. You can do this with either the tools that come with your hosting service or with FTP clients. Knowing which you can use depends upon your hosting provider. Contact them if you are not sure.
Step- 6: Promote Your Website
The easiest way to promote your website is through search engine optimization or SEO. You build your Web content so that it ranks well in search engines. This can be very difficult, but it is inexpensive and can result in good results if you work at it.
Other ways to promote your site include: word of mouth, email, and advertising. You should include your URL on all professional correspondence and whenever it makes sense in personal messages. I put my URL in my email signature along with my email address.
Step- 7: Maintain Your Website
Maintenance can be the most boring part of website design, but in order to keep your site going well and looking good, you need to do it. Testing your site as you’re building it and then after it’s been live for a while is important. And you should also work on content development on a regular basis.
Hosting is where you put your website and all the Web pages. While it’s possible to build a website on your personal computer and never move it online, it’s somewhat pointless. No one but you will ever be able to see it. So the first thing you’ll want to do is find a Web hosting provider.
Step- 2: Domain Name
You don’t need a domain name to put up a website. You can put up a site on free hosting or even paid hosting plans without a domain name. A domain name provides extra branding for your site and makes it easier for people to remember the URL. But domain names cost money, typically between $8 and $35 a year.
Step- 3: Plan Your Website
Once you’ve gotten a domain and decided on your URL, you can start planning your site. You need to decide:
* Type of site – Most websites are either news/information, product, or reference sites. As such they each have a slightly different focus.
* Navigation – The navigation affects the information architecture of your site.
* Content – Content is the actual pages you’ll be building.
Step- 4: Build Your Website Page by Page
Building a website requires that you work on one page at a time. To build your site you should be familiar with:
* Design Basics – The elements of good design and and how to use it on websites.
* Learning HTML – HTML is the building block of a Web page. While it’s not absolutely required, you’ll do better if you learn HTML than if you don’t.
* Learning CSS – CSS is the building block of how pages look. And learning CSS will make it easier for you to change your site’s look when you need to.
* Web Page Editors – Finding the perfect editor for your needs will help you learn design, HTML, and CSS.
Step- 5: Publish Your Website
Publishing your website is a matter of getting the pages you created in step 4 up to the hosting provider you set up in step 1. You can do this with either the tools that come with your hosting service or with FTP clients. Knowing which you can use depends upon your hosting provider. Contact them if you are not sure.
Step- 6: Promote Your Website
The easiest way to promote your website is through search engine optimization or SEO. You build your Web content so that it ranks well in search engines. This can be very difficult, but it is inexpensive and can result in good results if you work at it.
Other ways to promote your site include: word of mouth, email, and advertising. You should include your URL on all professional correspondence and whenever it makes sense in personal messages. I put my URL in my email signature along with my email address.
Step- 7: Maintain Your Website
Maintenance can be the most boring part of website design, but in order to keep your site going well and looking good, you need to do it. Testing your site as you’re building it and then after it’s been live for a while is important. And you should also work on content development on a regular basis.
Labels:
Web Development
Subscribe to:
Posts (Atom)