June 25, 2008 - Posted by admin- 0 Comments
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 [...]
June 20, 2008 - Posted by admin- 0 Comments
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 [...]
June 18, 2008 - Posted by admin- 0 Comments
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 [...]
June 15, 2008 - Posted by admin- 0 Comments
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] =>
[...]
June 9, 2008 - Posted by admin- 0 Comments
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 [...]
June 8, 2008 - Posted by admin- 0 Comments
To find the string length in php
just use
<?
$a=”shanmugam”;
$b=strlen($a);
echo $b; //will display length of the string
?>
Output:
9