i have a little question, if for example i have a certain string like this "fhhhg/ffdhdgh/fhdh" how can i get whats in between the '/' in a seperated string?
$myarray = explode("\/", $string); each chunck between the / will be in an array...
$myarray[0] will contain fhhhg $myarray[1] will contain ffdhdgh etc....