Originally posted by KevinMG
wouldn't it just be easier to pass the different values as different variables in the address?
i.e. address.php?name=value&time=value&title=another_value
Yes it would be easier unfortunately thats not how it works 🙁
LordShryku: Well that was part of the problem. I think I finally found a way i can do it though, please check this out:
$r = $_GET['r'];
$release = str_replace("]","",$r);
$pieces = explode("[", $release);
$groupcat = $pieces[0];
$datetime = $pieces[1];
$title = $pieces[2];
//explode groupcat for group and category variables
$groupcatex = explode("/",$pieces[0]);
$group = $groupcatex[0];
$cat = $groupcatex[1];
//explode datetime for date and time variables
$datetimeex = explode("/",$pieces[1]);
$date = $datetimeex[0];
$time = $datetimeex[1];