whois server Programming Software Development by zychos …= 8000; /* * Look up the WHOIS service entry */ if ((sp = getservbyname("whois","tcp")) == NULL)…"); exit(1); } whois(t); /* perform the actual WHOIS service */ close(t); } } int whois(int sock); { struct passwd… Re: whois script not working in IE Programming Web Development by MDGM … $error; ?> <center><form name="whois" method="post" action=""> <…',$result)) { echo '<center><form name="whois" method="post" action=""> &… '; } else { echo '<center><form name="whois" method="post" action=""> <… whois component in asp Programming Web Development by Gayatri_laxmi How can we get details using whois function in asp and how to create our own whois extension in firefox which is in asp? whois script not working in IE Programming Web Development by MDGM hi guys, I found a simple whois script and intregrated it completely into my site before testing … function search_form($error){ echo $error; ?> <form name="whois" method="post" action=""> <… Re: whois script not working in IE Programming Web Development by nav33n Nope. Still the same result. Maybe you would like to use this script :) [url]http://www.hotscripts.com/PHP/Scripts_and_Programs/Networking_Tools/Whois/index.html[/url] (Max's Whois). I have tried it and it works like a charm! Re: whois script not working in IE Programming Web Development by MDGM …->serverList[0]['top'] = 'com'; $this->serverList[0]['server'] = 'whois.crsnic.net'; $this->serverList[0]['response'] = 'No match for…;serverList[9]['top'] = 'co.uk'; $this->serverList[9]['server'] = 'whois.nic.uk'; $this->serverList[9]['response'] = 'No match for… Re: whois script not working in IE Programming Web Development by nav33n Umm.. I tried this script. It worked only for [url]www.yahoo.com[/url] (on both mozilla and firefox). It didn't work for [url]www.microsoft.com[/url] , [url]www.daniweb.com[/url] or even [url]www.whois.net[/url]. :S I think something is wrong with the script. Edit: It worked for [url]www.msn.com[/url] ;) Re: whois script not working in IE Programming Web Development by MDGM …;serverList[9]['top'] = 'co.uk'; $this->serverList[9]['server'] = 'whois.nic.uk'; $this->serverList[9]['response'] = 'No match for… Whois DATABASE? Programming Web Development by Sunshineee Hi everyone, I have my website in PHP.I want to add in Whois Search. can someone please guide me thro? Thanks.Have a nice day.:icon_smile: Re: Whois DATABASE? Programming Web Development by mexabet Visit this site to check if you can get one script that matches your need: [url]http://www.hotscripts.com/PHP/Scripts_and_Programs/Networking_Tools/Whois/index.html[/url] Re: Please help to find the whois of .in, .co.in etc. Programming Web Development by almostbob whois.internic.net whois.arin.net whois.ripe.net whois.aunic.net whois.apnic.net whois.nic.ad.jp nic.ddn.mil whois.enunet.es but you have to check who does what Please help to find the whois of .in, .co.in etc. Programming Web Development by hbk_star2006 … them. ####################################### com=whois.crsnic.net net=whois.crsnic.net org=whois.publicinterestregistry.net info=whois.afilias.net biz=whois.neulevel.biz us=whois.nic.us co….uk=whois.nic.uk… New Domain Whois and Popularity Checker Digital Media Digital Marketing Search Engine Strategies by jkon … inform you of our new tool in 9dir.com Domain Whois and Popularity Checker. Just go in any page of 9dir… checked in the top banner in the field 9dir Domain Whois and Popularity Checker a domain name without http:// or www… Re: Doing a whois lookup against a .csv file Programming Software Development by rch1231 Hello, try this where one.csv is your file and it will create a file with the IP address as the name with the whois data, [CODE]for x in `cat one.csv | sed s/\"//g | awk -F, {' print $2 '} `; do whois $x > $x; done[/CODE] Doing a whois lookup against a .csv file Programming Software Development by -lodogg- … file. The problem is I would like to do a whois lookup against each public IP to see where they are… query whois Programming Web Development by designalex … handles all of the registrations is [url]http://co.za/whois.shtml[/url] Im suppose i have to develop something from… Re: query whois Programming Web Development by sv3tli0 … you have provide us. [CODE]http://co.za/cgi-bin/whois.sh?Domain=DOMAIN_NAME&Enter=Enter[/CODE] check DOMAIN_NAME there… Re: query whois Programming Web Development by designalex … from my site using ([url]http://co.za/cgi-bin/whois.sh?Domain=DOMAIN_NAME&Enter=Enter[/url]) and how to… Re: query whois Programming Web Development by diafol … = $_POST['formstring']; $str = file_get_contents("http://co.za/cgi-bin/whois.sh?Domain=$formstring"); if(preg_match("/Match: No Matches… How to get WhoIs information Programming Web Development by faisal6621 I'm working on a project where I've to display whether a certain domain name is available or not. If the domain name is unavailable, user may choose to view `WhoIs` information, which I've to show. How can I do this in PHP? Re: whois server Programming Software Development by nezachem You are on Solaris, right? Add `-lsocket -lnsl` to the command line. That will pick up the necessary libraries. Re: whois server Programming Software Development by zychos I am using Backtrack and compiling through nano Re: whois component in asp Programming Web Development by webthang_rob Check out this site :: [URL="http://2enetworx.com/dev/samples/memwhoson.asp"]http://2enetworx.com/dev/samples/memwhoson.asp[/URL] :: that should help you out. Re: whois script not working in IE Programming Web Development by nav33n Argh! You are right. Php doesn't like [b].[/b] in the names of form elements. It replaces [b].[/b] by [b]_[/b]. [code=php] <?php print_r($_POST); ?> <html> <body> <form method="post"> <input type="text" name="some.name"> <input type="submit" name="submit.1" value=&… Re: whois script not working in IE Programming Web Development by R0bb0b Since "_" is an invalid character for a domain, does that mean that you will never have an underscore in the any of the form entity names? if so, you could try this [CODE=php] foreach($_POST as $key=>$value) { $_POST[str_replace("_", ".", $key)] = $value; } print_r($_POST); echo "<br />" . $_POST… Re: whois script not working in IE Programming Web Development by MDGM Thanks r0bb0b and nav33n however im not quite sure what to do with the code. presumerably i put it at the beginning of the php script to make sure that it changes all strings with an underscore to have full stops instead however im not sure what $key or $value are meant to be. I have a domain name field called "domain" and checkboxes… Re: whois script not working in IE Programming Web Development by R0bb0b You know that there are two parts to an array cell(or what ever you want to call it) right? array[0] = "red"; echo array[0] and get "red"; 0 is the key. "red" is the value. so, you can do a foreach loop with just he value like this [CODE=php] foreach($array as $value) { $value = "red"; } [/… Re: whois script not working in IE Programming Web Development by MDGM Ahhh okay I see so it finds any array's where co_uk is written and converts it to co.uk - i got a parse error: [CODE] Parse error: syntax error, unexpected T_FOREACH, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/sites/economizerz.com/public_html/test/maxwhois/maxWhois.class.php on line 8 [/CODE] [CODE] <?php class … Re: whois script not working in IE Programming Web Development by MDGM (if the script is meant to be: [CODE] foreach($_POST as $key=>$value) { $_POST[str_replace("_", ".", $key)] = $value; } print_r($_POST); echo "<br />" . $_POST['.co.uk']; [/CODE] i have tried that too) Re: New Domain Whois and Popularity Checker Digital Media Digital Marketing Search Engine Strategies by canadafred Ya pretty cool tool.