www.site.com/page.php?q=SPLITHERE&cat=0&others=1
www.site.com/page.php?q=
&cat=0&others=1
$url = "www.site.com/page.php?q=SPLITHERE&cat=0&others=1";$first = explode("?",$url);print_r($first);$second = explode("&",$first[1]);print_r($second);$last = explode("=",$second[0]);print_r($last);
Jump To Top of Thread