Re: [PHP] whois Domain??

2007-01-09 Thread Curt Zirzow
On 1/9/07, Ashley M. Kirchner <[EMAIL PROTECTED]> wrote: Curt Zirzow wrote: > Assuming paths is evil :) To add to what Curt says here, so is assuming the command actually exists. :) ha! nice any shell command should really be used like: $cmd = '/bin/command ' . escapeshellcmd($userinput

Re: [PHP] whois Domain??

2007-01-09 Thread Ashley M. Kirchner
Curt Zirzow wrote: Assuming paths is evil :) To add to what Curt says here, so is assuming the command actually exists. :) -- H | It's not a bug - it's an undocumented feature. + Ashley M. Kirchner

Re: [PHP] whois Domain??

2007-01-09 Thread Curt Zirzow
On 1/9/07, Wickham, Larry <[EMAIL PROTECTED]> wrote: If you are running under linux you can use one of the many exec functions in php to execute the whois command. i'd rather like to see a path used from from `which whois` Assuming paths is evil :) Curt. -- PHP General Mailing List (http:/

RE: [PHP] whois Domain??

2007-01-09 Thread Wickham, Larry
If you are running under linux you can use one of the many exec functions in php to execute the whois command. $output"; ?> Larry -Original Message- From: Marcelo Ferrufino Murillo [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 09, 2007 4:20 PM To: php-general@lists.php.net Subject

RE: [PHP] whois api's

2003-11-11 Thread Vail, Warren
I believe network solutions and all other sources of this kind of information have been tightening access to more than the IP address, because, it seems, some unscrupulous individuals have been using the information to spam domain owners. Since it appears that you are not a domain registrar, or yo

Re: [PHP] Whois request record in database

2003-09-12 Thread murugesan
You have missed the braces. Close it properly. The following code works well "); $db_name='dbname'; $db_user='username'; $db_password='password'; $table='tablename'; // Connect to the database $db_conn = mysql_connect("localhost",$db_user,$

Re: [PHP] whois script or class

2003-01-18 Thread Jason k Larson
http://phpwhois.org/ Ashley M. Kirchner wrote: I'm looking for a script, or class, that I can feed a domain name to and get back whois information, preferably already parsed into things like, the registrar, the registrant, ns servers, created/expire dates... Regardless of who the registrar

Re: [PHP] Whois Search in PHP

2002-11-17 Thread Chandu Nannapaneni
Hah, U gave just what I wanted. Good tip. /Chandu - Original Message - From: "John Nichel" <[EMAIL PROTECTED]> To: "Chandu Nannapaneni" <[EMAIL PROTECTED]> Sent: Monday, November 18, 2002 3:42 AM Subject: Re: [PHP] Whois Search in PHP > You could jus

Re: [PHP] Whois Search in PHP

2002-11-17 Thread Hatem Ben
time it return a fresh information, just use the suitable server. PS : send your emails to [EMAIL PROTECTED] :))) Hatem - Original Message - From: "Chandu Nannapaneni" <[EMAIL PROTECTED]> To: "Hatem Ben" <[EMAIL PROTECTED]> Sent: Sunday, November 17, 2002

Re: [PHP] Whois Search in PHP

2002-11-17 Thread Hatem Ben
this is what the whois server return exactly for Google (using whois.internic.net): Whois Server Version 1.3 Domain names in the .com, .net, and .org domains can now be registered with many different competing registrars. Go to http://www.internic.net for detailed information. GOOGLE.COM.IS.THE.

Re: [PHP] whois query

2002-09-12 Thread Adam Williams
try using nl2br() on it before you print it. Adam On Thu, 12 Sep 2002, Tom Ray wrote: > Nope still comes up with everything in one big line. I'm running through > different options right now..but I'm tired and my brain is starting to > hurt :) > > Adam Williams wrote: >

Re: [PHP] whois query

2002-09-12 Thread Tom Ray
Nope still comes up with everything in one big line. I'm running through different options right now..but I'm tired and my brain is starting to hurt :) Adam Williams wrote: >try with and see if that works. > > Adam > >On Thu, 12 Sep 2002, Tom Ray wrote: > > > >>Yes, but how d

Re: [PHP] whois query

2002-09-12 Thread Adam Williams
try with and see if that works. Adam On Thu, 12 Sep 2002, Tom Ray wrote: > Yes, but how do you format the information that comes back out of the > whois? I'm doing this: > > > $whois = system("whois [EMAIL PROTECTED]"); > > print "$whois"; > > ?> > > But all the information i

Re: [PHP] whois query

2002-09-12 Thread Tom Ray
Yes, but how do you format the information that comes back out of the whois? I'm doing this: $whois"; ?> But all the information is shown as one big line, no breaks or anything. How would I do this so it showed properly formatted output? Adam Williams wrote: >Have a php page that runs exec(

Re: [PHP] whois query

2002-09-12 Thread Andrew Brampton
PROTECTED]> Sent: Thursday, September 12, 2002 2:17 PM Subject: Re: [PHP] whois query > Have a php page that runs exec() or system() and does a whois query on the > domain you want and then have it output the text to a page. Very simple > to do, less then 2 minutes of coding. > > Ad

Re: [PHP] whois query

2002-09-12 Thread Adam Williams
Have a php page that runs exec() or system() and does a whois query on the domain you want and then have it output the text to a page. Very simple to do, less then 2 minutes of coding. Adam On Thu, 12 Sep 2002, yasin inat wrote: > please anyone can help me about

Re: [PHP] Whois...

2002-08-12 Thread Danny Shepherd
, August 12, 2002 11:32 PM Subject: RE: [PHP] Whois... > > > I'd like to implement on my web site an "whois" to know the > > information about a domain name (.com, org, ) > > There's an article about doing exactly this on devshed > (www.devshed.com/S

RE: [PHP] Whois...

2002-08-12 Thread David Freeman
> I'd like to implement on my web site an "whois" to know the > information about a domain name (.com, org, ) There's an article about doing exactly this on devshed (www.devshed.com/Server_Side/PHP/) that you could have a look at. Looked like a pretty complete solution when I went looking

RE: [PHP] Whois...

2002-08-12 Thread Steven
The tutorial at DevShed should provide the answers your looking for http://www.devshed.com/Server_Side/PHP/whois/page1.html -Original Message- From: Christian Ista [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 12:08 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Whois

Re: [PHP] Whois...

2002-08-12 Thread Peter J. Schoenster
On 12 Aug 2002 at 20:48, Christian Ista wrote: > Hello, > > I'd like to implement on my web site an "whois" to know the information > about a domain name (.com, org, ) > > Could you tell me how to do that ? http://promoxy.mirrors.phpclasses.org/search.html?words=whois&go_search=1 http://

RE: [PHP] WHOIS in PHP

2002-03-18 Thread Coggeshall, John
Read my article on connecting to Internet services (Creating a WHOIS interface): http://www.zend.com/zend/spotlight/connecting.php John -Original Message- From: Analysis & Solutions [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 4:48 PM To: PHP List Subject: Re: [PHP] W

Re: [PHP] WHOIS in PHP

2002-03-18 Thread Analysis & Solutions
On Mon, Mar 18, 2002 at 02:58:18PM -0500, Brian wrote: > Does anyone out there know how to execute a WHOIS query from within PHP? I use this on a NetBSD system: exec("whois -h whois.geektools.com $Domain", $Result); --Dan -- PHP scripts that make your job easier

Re: [PHP] WHOIS in PHP

2002-03-18 Thread Greg Donald
On Mon, 18 Mar 2002, Brian wrote: >Hi: >Does anyone out there know how to execute a WHOIS query from within PHP? quick and dirty: #!/usr/bin/php -q -- --- Greg Donald - http://destiney.com/ http://phprated.com/ | http://ph

RE: [PHP] whois

2001-01-29 Thread Jason Murray
> There's a very cool service out there, you can go to for instance > ba.whois-servers.net to find server for .ba. > > So you can basically go to ${TLD}.whois-servers.net to find server for > $TLD. The trouble is that it's not really current. [jason@phpdev jason]$ nslookup es.whois-servers.net

Re: [PHP] whois

2001-01-25 Thread AJDIN BRANDIC
All of them servers give my error 111, not authorised :(. Dead end again :). I have been trying to do sort this out but no luck. Any way Thanks On Thu, 25 Jan 2001, Ernest E Vogelsinger wrote: > At 15:13 25.01.2001, Andy Woolley said: > [snip] > >I kn

Re: [PHP] whois

2001-01-25 Thread AJDIN BRANDIC
On Thu, 25 Jan 2001, Andy Woolley wrote: > Ajdin, > > I know this is a little off topic but for your information 'whois.ripe.net' > provide information for the .ba TLD Ripe has only 10 .ba domains registred in their db :(. It is not up to date. Ajdin > > I too am looking for a database of T

Re: [PHP] whois

2001-01-25 Thread Stig Venaas
On Thu, Jan 25, 2001 at 03:37:26PM +0100, Ernest E Vogelsinger wrote: > At 15:13 25.01.2001, Andy Woolley said: > [snip] > >I know this is a little off topic but for your information 'whois.ripe.net' > >provide information for the .ba TLD > > > >I too am loo

Re: [PHP] whois

2001-01-25 Thread Ernest E Vogelsinger
At 15:13 25.01.2001, Andy Woolley said: [snip] >I know this is a little off topic but for your information 'whois.ripe.net' >provide information for the .ba TLD > >I too am looking for a database of Top Level Domains around the world so if >anyone knows of o

Re: [PHP] whois

2001-01-25 Thread Andy Woolley
Ajdin, I know this is a little off topic but for your information 'whois.ripe.net' provide information for the .ba TLD I too am looking for a database of Top Level Domains around the world so if anyone knows of one I would be very much obliged If I could have a copy. Kind Regards Andy Woolley