Getting part of the string
Posted: Wed Jul 05, 2006 3:46 am
$string = "hello world";
$start = 1;
$end = 5;
how can i make a function in such a way that when the above 3 parameter is passed in, it will return "hello"??
$start = 1;
$end = 5;
how can i make a function in such a way that when the above 3 parameter is passed in, it will return "hello"??