How to install python on your computer?

Python is a wonderful language such that once you learn it you will say it as the best one as it’s faster than many other applications..
So how to try python
Here is the link that will give you step by step description how to install python your PC and also how to install it on local [...]



Check the IP Address of domain in Windows command prompt

All of you would have visited a IP address lookup site to know the ip address of your competitor site or anyother site.Here is another simple way to find out IP address of a website using your command prompt which is one of the easiest one
Just go to your command prompt
If you do n’t know [...]



New Firefox Version 3

I downloaded firefox 3 today and when compared to firefox 2 it’s somewhat better than the latter  in all aspects,but the problem is  most of the toolbars are not working .For example Take Google .their Google toolbar is not compatible with firefox 3,So most of the userswho downloaded would not have used Google toolbar so [...]



Split string in php

 Here is a simple code in php that will split a string…
 
 
 
<?php
$str = “Hello Friend”;
$arr1 = str_split($str);
$arr2 = str_split($str, 3);
print_r($arr1);
print_r($arr2);
?>
The above example will output:

Array
(
[0] => H
[1] => e
[2] => l
[3] => l
[4] => o
[5] =>
[...]



Array Search in php

I searched php.net for array search function but I did n’t find any so I thought about writing my own function for it
Here is a preview of the function:
Suppose if there is an array of names -John,Charles,Richard,Richard and Bill.
You want to find how many times Richard is in the array and in which array [...]



String length in php

To find the string length in php
just use
<?
$a=”shanmugam”;
$b=strlen($a);
echo $b; //will display length of the string
?>
Output:
9