Can someone please tell me what I am doing wrong here? (I get errors)
The document is called by http://localhost/find.php?search=term-goes-here
<?
$url = 'http://localhost/cgi/s?srch=$search';
$lines_array = file($url);
$lines_string = implode('', $lines_array);
eregi("(.*)", $lines_string, $head);
echo $head[0];
?>