Jump to content

search website for email address


redarrow

Recommended Posts


This code i love i worked it all out but how does one get to seach

for a specific email on a website thank you.

advance thank you.

i tried for 6 hours last week no joy.

search_for_url.php
[code]
//<?php


//$your_link="http://www.what_ever.co.uk";

//$remote_url="http://www.what_ever";

//$match_pattern = preg_quote(rtrim($your_link, "/"), "/");

//if ($handle = @fopen($remote_url, "r")) {

//while (!feof($handle)) {

//$part = fread($handle, 1024);

//if (preg_match("/<a(.*)href=[\"']".$match_pattern.

//"(\/?)[\"'](.*)>(.*)<\/a>/", $part)) {

//echo "links there";
//}
// }
//fclose($handle);

//} else{

//echo" no link sorry";

//}

//?>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/19308-search-website-for-email-address/
Share on other sites

what please do i do to get this code to search for a email form external website.

i tried but no joy.

is there any way you no to help  in this situation please thank you.
[code]
<?php


$your_link="http://www.what_ever.co.uk";

$remote_url="http://www.what_ever";

$match_pattern = preg_quote(rtrim($your_link, "/"), "/");

if ($handle = @fopen($remote_url, "r")) {

while (!feof($handle)) {

$part = fread($handle, 1024);

if (preg_match("/<a(.*)href=[\"']".$match_pattern.

"(\/?)[\"'](.*)>(.*)<\/a>/", $part)) {

echo "links there";
}
}
fclose($handle);

} else{

echo" no link sorry";

}

?>
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.