<?php

$string= 'blah blah result.php?whatiwanttoecho';
preg_match_all('/result\.php\?([.\w\W]*?)\s/ui', $string, $matches);
foreach(end($matches) as $key=> $value){
    print '<pre>'.print_r($value, 1).'</pre>';
}

?>