what if i use:
<?php
$text = "www.site.com/page.php?q=SPLITHERE&cat=0&others=1";
if(preg_match('/*SPLITHERE*/', $text, $matches))
{
echo $matches[1]."<br />\n".$matches[2];
}
else
{
user_error("Match failed");
}
?>
but i am not so familiar with regex ..