Hi,
I tried to make using substr and explode functions but couldn't make it anyway I have a string like:
$string = "handbook";
I want to make cut the hand there like:
$newstring = somefunction("hand", $string);
how can I do that?
$string = "handbook"; $newstring = str_replace("hand"," ",$string); echo $newstring;
thanks