How can I get a PHP script to generate a list of 3 letters and then have it query like:
site.com/query.php?query=$query
and return the results?
I'm doing this to look for domain names![]()
| SitePoint Sponsor |




How can I get a PHP script to generate a list of 3 letters and then have it query like:
site.com/query.php?query=$query
and return the results?
I'm doing this to look for domain names![]()
To query the site just to:
Code:$url = "http://www.server.ext/page.ext?this=$something"; $html = implode("",file($url));
- John M
Bookmarks