Hi,
I have some questions on the usage of explode() function.
For example,
querypath refers to URL path
$chunk= explode('/', $this->querypath)
$this-> moduleID = $chunks[2]
$this-> modulepath=
"/" . implode ("/", array_slice($chunk,3))
$this->modulebasepath=
"/" > $chunk[1] "/" . this-> moduleID
(1) when explode the URL, what is the result, the value of $chunk ?
(2) how the explode function works?
Thanks for the help.
Regards,
SChin