Nieuw lid |
|
Dit heb ik ff veranderd, geen idee of je dit bedoeld
<?php
$content = file_get_contents("http://www.youtube.com/results?search_query=".$_GET['zoek']);
preg_match_all("~<a href=\"/watch(.*?)\">(.*?)</a>~si", $content, $matches);
echo '<pre>', var_dump($matches), '</pre>';
?>
<?php $content = file_get_contents("http://www.youtube.com/results?search_query=".$_GET['zoek']); preg_match_all("~<a href=\"/watch(.*?)\">(.*?)</a>~si", $content, $matches); ?>
|