I have a URL as a string. How do I match the numbers after the VideoID. Also VideoID may occur at different points in the URL. But I will worry about that afterwards, as I can't even do this.
$string = 'http://example.com/index.php?action=vids.individual&VideoID=60085484';
preg_match('/(?<VideoID>)=/', $string, $matches);
print_r($matches);
...Spare some change for a noob. :)