Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //http://www.businessdirectory.pk/Default.aspx?action=Business&pid=307880&cityid=279285&page=316
- ?>
- <?php
- set_time_limit(0);
- // error_reporting(0);
- $myfile = fopen("Business_emails.txt", "w") or die("Unable to open file!");
- echo "<ol>";
- for($i = 0 ; $i<=316 ; $i++){
- $result = file_get_contents("http://www.businessdirectory.pk/Default.aspx?action=Business&pid=307880&cityid=279285&page=".$i);
- //echo $login;
- // <td style="width: 70%;"></td>
- preg_match_all("/<p class='email'>(.*?)<\/p>/s",$result,$matches);
- //print_r($matches);
- $h4t3d=array_unique($matches[1]);
- foreach ($h4t3d as $ul){
- echo "<li>".$ul."</li>";
- fwrite($myfile, $ul."\n");
- flush();
- @ob_flush();
- }
- flush();
- @ob_flush();
- }
- fclose($myfile);
- echo "</ol>";
- // EMAIL : [email protected]
- ?>
Add Comment
Please, Sign In to add comment