I now have this:
$start = 0;
$end = strpos($newUrl, "/") ;
$firstPage = substr($newUrl, $start, $end-$start);
echo $firstPage, "<br>";
$start = strpos($newUrl, "/") + 1;
$end = 256;
$secondPage = substr($newUrl, $start, $end-$start);
$secondPage = str_replace("/", "", $secondPage);
echo...