can anyone help me fix this?? code it gives me an unset error which i dont know how to debug.. it reads every url stored in $all_url then removes the url that has address starting from 0-9 and if it see the word google it is also remove... or can anyone give me an alternative code? $x = $counter; while (++$x < 200) { if (preg_match('~http://(www\.)?([0-9]|(.+\.)?google\.com)~', $all_url[$x]) unset($all_url[$x]); }
oh man is that all??well it works lol thanks but it does not return the urls that i want... can any1 revise it?i want to get only the urls with full domain for example www.digitalpoint.com... i want to exclude the urls that is starting with a number , /search, and site that does not include google word