Jump to content

Script to retrieve information from a web telephone directory?


ghurty

Recommended Posts

None that I know of, you are looking for a webfetch though. I can create the script, but thats freelancing and would involve a price. If you are interested pm me, if not than this is the wrong forum, this is simply for help with scripts you are already currently running.

Hi

 

There is one method using cURL u can do it...

 

$curl="abc.com";

//curl_headdata contains the fields of the form

$curl_headdata="SLD=$domainame&TLD=$tlds&submit=submit";

 

$curlconn = curl_init();

 

curl_setopt($curlconn, CURLOPT_POST, true);

curl_setopt($curlconn, CURLOPT_POSTFIELDS, "$curl_headata");

 

curl_setopt($curlconn, CURLOPT_URL, $curl_url);

curl_setopt($curlconn, CURLOPT_RETURNTRANSFER, true);

$curlresult = curl_exec($curlconn);

echo $crulresult;

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.