/    Sign up×
Community /Pin to ProfileBookmark

Whois script

Well i am a big noob ad php i am gonna take lessons after christmas but i need somthing now and i can not find a decent script anywhere.

I search a script that can look up these diffrent extensions like :

.be , .nl , .com , .net , .org , .info , .biz , .us

So if anyone can help me with this i am verry pleased. I can not work on my site anymore because i need this first.

Tnx in advance

ZoeF

to post a comment
PHP

6 Comments(s)

Copy linkTweet thisAlerts:
@ZoeFauthorDec 20.2004 — please help me i am so stuck ?
Copy linkTweet thisAlerts:
@dreamcatcherDec 20.2004 — Have you tried Hotscripts.com? I did a search there and found a couple of scripts that may help you.

Try this one:

[URL=http://www.hotscripts.com/Detailed/40874.html]http://www.hotscripts.com/Detailed/40874.html[/URL]

dc ?
Copy linkTweet thisAlerts:
@ZoeFauthorDec 20.2004 — tnx that helpt me allot !!

but i have only one more question. I need to have some extra whois things fore .be - .nl - .us . Can someone help me with this. This is the code i downloaded and changed to go with the site layout.

Thnx in advance.

[code=php]
<?php

// change it here - if you changed the file name from whois.php to something else

define('FILE_NAME', 'whois.php');

// Language settings

define('PAGE_TITLE_META', 'whois'); // Title to be used in META tag within HEADER
define('POWERED_BY', 'Powered by zoef-design'); // Text to display in a footer, set your web url here

define('MAIN_COMMAND', 'Please enter a suggested domain name'); // Command in a main window
define('CHECK_BUTTON', 'Check'); // Check button text
define('META_CHARSET', 'iso-8859-1'); // Charset to be used in META tags
define('META_LANGUAGE', 'en'); // Language to be used in META tags

define('FOOTER_TEXT', 'Please wait for the answer -
due to whois servers overload it may take a while to lookup all names.
Sometimes you may need to reload the page and repeat lookup.'); // text in footer
define('FOOTER_RELOAD_TEXT', 'Reload'); // text of the link to reload the page

// This is an extra layer displayed during domain search. It is helpfull when someone is
// searching for all domains at once.
// If you are not confident with layers at all
// just disable it - set the first value below to false.

define('WAIT_LAYER_ENABLED', true);
define('WAIT_TITLE', 'Please wait...');
define('WAIT_MESSAGE', 'If the lookup takes too long (more than a minute), click here to reload the page and try again.');

define('LINK_REGISTER_TEXT', 'Register'); // Register link text
define('STATUS_BAR_REGISTER_TEXT', 'Register'); // Status bar register message - when hovered over the "Register" link
define('STATUS_BAR_DETAILS', 'Details of'); // Status bar "Details of" - when hovered over "Details" link
define('LINK_TAKEN_DETAILS', 'Details'); // "Details" text
define('LINK_TAKEN_GOTO', 'Goto'); // "Goto" text

define('ALL_TEXT', 'all'); // Text to display for all domains checking
define('CLOSE_BUTTON_TEXT', 'Close window'); // "Close" button text in a details window
define('AVAILABLE_TEXT', 'Available'); // Text displayed if the domain is available
define('NOT_AVAILABLE_TEXT', 'Taken'); // Text displayed if the domain is not available

define('ERROR_TOO_SHORT', 'The domain name you typed is too short - it must contain minimum 3 characters'); // Error message if the domain name is too short
define('ERROR_TOO_LONG', 'The domain name you typed is too long - it may contain maximum 63 characters'); // Error message if the domain name is too long
define('ERROR_HYPHEN', 'Domain names cannot begin or end with a hyphen or contain double hyphens'); // Error message if the domain starts with hyphen or contains double hyphen
define('ERROR_CHARACTERS', 'Domain names can only contain alphanumerical characters and hyphens'); // Error message if the domain contains other characters than letters, digits or hyphens

// DESIGN PARAMETERS

define('MAIN_STYLE','
BODY {
background-color: #999999;
color: #000000;
font-family: "Verdana";
font-size: 12px;
}
TD {
color: #000000;
font-family: "Verdana";
font-size: 12px;
}

.available {
color: #cc3300;
font-family: "Verdana";
font-size: 12px;
}

.notavailable {
color: #cc3300;
font-family: "Verdana";
font-size: 12px;
}
.separator {
background-color: #ffffff;
}
.footer {
color: #333333;
font-family: "Verdana";
font-size: 10px;
}
.windowborder {
background-color: #ffffff;
}
.windowinside {
background-color: #999999;
}
.errors {
color: #ffffff;
font-family: "Impact";
font-size: 10px;
}
A {
font-family: "Verdana";
font-size: 12px;
color: #cc3300;
text-decoration: none;
}
A:hover {
font-family: "Verdana";
font-size: 12px;
color: #ffffff;
text-decoration: underline;
}
A.footer {
font-family: "Verdana";
color: #333333;
text-decoration: none;
font-size: 10px;
}
A.footer:hover {
font-family: "Verdana";
color: #FFFFFF;
text-decoration: underline;
font-size: 10px;
}
A.footerreload {
font-family: "Verdana";
color: #FFFFFF;
text-decoration: none;
font-size: 12px;
}
A.footerreload:hover {
font-family: "Verdana";
color: #cc3300;
text-decoration: underline;
font-size: 12px;
}
A.footerpowered {
font-family: "Verdana";
color: #333333;
text-decoration: none;
font-size: 10px;
}
A.footerpowered:hover {
font-family: "Verdana";
color: #FFFFFF;
text-decoration: underline;
font-size: 10px;
}




'); // change it to whatever you like

// Define lookup variables

// .com domains
define('COM_SERVER', "whois.opensrs.net"); // server to lookup for domain name
define('COM_NOMATCH', "Can't get information"); // string returned by server if the domain is not found
define('COM_INCLUDE', true); // include this domain in lookup

// .net domains
define('NET_SERVER', "whois.opensrs.net"); // server to lookup for domain name
define('NET_NOMATCH', "Can't get information"); // string returned by server if the domain is not found
define('NET_INCLUDE', true); // include this domain in lookup

// .org domains
define('ORG_SERVER', 'whois.publicinterestregistry.net'); // server to lookup for domain name
define('ORG_NOMATCH', 'NOT FOUND'); // string returned by server if the domain is not found
define('ORG_INCLUDE', true); // include this domain in lookup

// .info domains
define('INFO_SERVER', 'whois.opensrs.net'); // server to lookup for domain name
define('INFO_NOMATCH', 'Not found'); // string returned by server if the domain is not found
define('INFO_INCLUDE', true); // include this domain in lookup

// .biz domains
define('BIZ_SERVER', 'whois.nic.biz'); // server to lookup for domain name
define('BIZ_NOMATCH', 'Not found'); // string returned by server if the domain is not found
define('BIZ_INCLUDE', true); // include this domain in lookup

// Shall we use register link? (true/false)
define('REG_LINK', false);
// If yes, give the url, it can be your affiliate link
define('REG_URL', 'http://www.123-reg.co.uk/affiliate.cgi?id=AF8763');

// Do you want a log file? (true/false)
define('WANTLOG', false);
// If yes, give the log file name here
// remember to chmod the file to 777 (change permition to writable for everyone)
define('LOGFILE', 'whois.log');

[/code]
Copy linkTweet thisAlerts:
@ZoeFauthorDec 20.2004 — Here is the rest

[code=php]
/*
#################################################################################################################
End of variables, you do not need to change anythin below this line.
#################################################################################################################
*/


if ($_POST['type']!="") define('TYPE', $_POST['type']); else define('TYPE', '');
if ($_POST['ddomain']!="") define('DDOMAIN', $_POST['ddomain']); else define('DDOMAIN', '');

// This function displays an available domain
function dispav($what)
{
echo '<tr><td nowrap align="center">';
if (REG_LINK)
{
echo '<a href="'.REG_URL.'" target="_blank" onMouseOver="window.status=''.STATUS_BAR_REGISTER_TEXT.' '.$what.'';return true" onMouseOut="window.status='';return true">'.LINK_REGISTER_TEXT.'</a>';
}
else
echo '&nbsp;';
echo '</td>
<td nowrap align="center" class="available"><b>'.$what.'</b></td><td colspan=3>&nbsp;</td></tr>';
}

// Function to display an unavailable domain with additional links
function dispun($what,$where)
{
echo '<tr>
<td colspan="2">&nbsp;</td>
<td align="center" nowrap class="notavailable"><b>'.$what.'</b></td>
<td nowrap align="center">
<a href="'.FILE_NAME.'?action=details&ddomain='.$what.'&server='.$where.'" onMouseOver="window.status=''.STATUS_BAR_DETAILS.' '.$what.'';return true" onMouseOut="window.status='';return true" onClick="NewWindow(this.href,'details','620','400','yes');return false;">
'.LINK_TAKEN_DETAILS.'</a></td>
<td nowrap align="center"><a href="http://www.'.$what.'" target="_blank">'.LINK_TAKEN_GOTO.'</a></td>
</tr>';
}

function startborder()
{
echo '<table align="center" width="600" border="0" cellspacing="0" cellpadding="0">
<tr><td width="100%" class="windowborder">
<table width="600" border="0" cellspacing="1" cellpadding="2">
<tr><td class="windowinside">';
}


function endborder()
{
echo '</td></tr></table></td></tr></table>';
}

function disperror($text)
{
startborder();
echo '<center><b class="errors">'.$text.'</b></center>';
endborder();
}

function main()
{
echo '<br>';
startborder();
echo '
<table width="100%" align="center" cellspacing="0" cellpadding="1">
<tr>
<td colspan="2" align="center" width="100%"><b>'.MAIN_COMMAND.'</b></td>
</tr>
<tr>
<td align="center">
<form method="POST" action="'.FILE_NAME.'">
<input type="hidden" name="action" value="checkdom">
<input type="hidden" name="type" value="'.TYPE.'">
<input type="text" name="ddomain" size="30" maxlength="63" value="'.DDOMAIN.'">&nbsp;
<input type="submit" name="button" value="'.CHECK_BUTTON.'">
</td>
<td align="left">';

if (COM_INCLUDE) { echo '<INPUT TYPE="radio" '; if(TYPE=='com' or TYPE == '') { echo 'CHECKED '; } echo ' NAME="type" VALUE="com"> com<br>'; }
if (NET_INCLUDE) { echo '<INPUT TYPE="radio" '; if(TYPE=='net') { echo 'CHECKED '; } echo ' NAME="type" VALUE="net"> net<br>'; }
if (ORG_INCLUDE) { echo '<INPUT TYPE="radio" '; if(TYPE=='org') { echo 'CHECKED '; } echo ' NAME="type" VALUE="org"> org<br>'; }
if (INFO_INCLUDE){ echo '<INPUT TYPE="radio" '; if(TYPE=='info') { echo 'CHECKED '; } echo ' NAME="type" VALUE="info"> info<br>'; }
if (BIZ_INCLUDE) { echo '<INPUT TYPE="radio" '; if(TYPE=='biz') { echo 'CHECKED '; } echo ' NAME="type" VALUE="biz"> biz<br>'; }
echo '<INPUT TYPE="radio" '; if(TYPE=='all') { echo 'CHECKED '; } echo ' NAME="type" VALUE="all"> '.ALL_TEXT.'';
echo '</form>
</td>
</tr>
<tr><td colspan="2" align="center" class="footer">'.FOOTER_TEXT.'<br><br>
<a class="footerreload" href="'.FILE_NAME.'" target="_self"><b>'.FOOTER_RELOAD_TEXT.'</b></a><br><br>
<a class="footerpowered" href="http://www.zoef-design.be" target="_self">'.POWERED_BY.'</a>
</td></tr>
</table>';
endborder();
}

function pageheader()
{
echo '
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset='.META_CHARSET.'">
<meta http-equiv="Content-Language" content="'.META_LANGUAGE.'">
<title>'.PAGE_TITLE_META.'</title>
<style>'.MAIN_STYLE.'</style>
<script type=text/javascript>
var win= null;
function NewWindow(mypage,myname,w,h,scroll)
{
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
var settings ="height="+h+",";
settings +="width="+w+",";
settings +="top="+wint+",";
settings +="left="+winl+",";
settings +="scrollbars="+scroll+",";
settings +="resizable=yes";
win=window.open(mypage,myname,settings);
if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
</script>
</head>
<BODY>';
}
function pagefooter()
{
echo '</BODY></HTML>';
}


if ($_GET['action'] == "details")
{
$server = $_GET['server'];
$ddomain = $_GET['ddomain'];
pageheader();
echo '<pre>';
$fp = fsockopen($server,43);
fputs($fp, "$ddomainrn");
while(!feof($fp))
{
echo fgets($fp,128);
}
fclose($fp);
echo '</pre>';
echo '<p align="center"><form><input type="button" value="'.CLOSE_BUTTON_TEXT.'" onclick="window.close()"></form>';
pagefooter();
exit;
}

elseif ($_POST['action']=='checkdom')
{
if (WAIT_LAYER_ENABLED)
{
echo '
<script language=javascript>
var ie4 = (document.all) ? true : false;
var ns4 = (document.layers) ? true : false;
var ns6 = (document.getElementById && !document.all) ? true : false;

function hidelayer(lay) {
if (ie4) {document.all[lay].style.visibility = "hidden";}
if (ns4) {document.layers[lay].visibility = "hide";}
if (ns6) {document.getElementById([lay]).style.display = "none";}
}

function showlayer(lay) {
if (ie4) {document.all[lay].style.visibility = "visible";}
if (ns4) {document.layers[lay].visibility = "show";}
if (ns6) {document.getElementById([lay]).style.display = "block";}
}
</script>';

echo '
<script language="javascript">
var laywidth = screen.width/2;
var layheight = screen.height/2;
var layl = (screen.width-laywidth)/2;
var layt = (screen.height-layheight)/2;
document.write("<div id='waitlayer' align='center' style='position:absolute; width:"+laywidth+"px; height:"+layheight+"px; z-index:-1; left:"+layl+"px; top:"+layt+"px; visibility: visible;'>");
</script>';

echo '<center><b>'.WAIT_TITLE.'</b><br><br>
<a href="'.FILE_NAME.'" target="_self">'.WAIT_MESSAGE.'</a>
</div>';
}

// Check the name for bad characters
if(strlen(DDOMAIN) < 3)
{
pageheader();
disperror(ERROR_TOO_SHORT);
main();
pagefooter();
exit;
}
if(strlen(DDOMAIN) > 63)
{
pageheader();
disperror(ERROR_TOO_LONG);
main();
pagefooter();
exit;
}
if(ereg("^-|-$",DDOMAIN))
{
pageheader();
disperror(ERROR_HYPHEN);
main();
pagefooter();
exit;
}
if(!ereg("([a-z]|[A-Z]|[0-9]|-){".strlen(DDOMAIN)."}",DDOMAIN))
{
pageheader();
disperror(ERROR_CHARACTERS);
main();
pagefooter();
exit;
}
pageheader();
startborder();


echo '
<table width="100%" align="center" cellspacing="0" cellpadding="1">
<tr>
<td nowrap align="center" class="separator"><b>&nbsp;</b></td>
<td nowrap align="center" class="separator"><b>'.AVAILABLE_TEXT.'</b></td>
<td nowrap align="center" class="separator"><b>'.NOT_AVAILABLE_TEXT.'</b></td>
<td nowrap align="center" class="separator"><b>&nbsp;</b></td>
<td nowrap align="center" class="separator"><b>&nbsp;</b></td>
</tr>';
[/code]
Copy linkTweet thisAlerts:
@ZoeFauthorDec 20.2004 — [code=php]
if ( (TYPE == "all" or TYPE == "com") and COM_INCLUDE )
{
$domname = DDOMAIN.".com";
$ns = fsockopen(COM_SERVER,43); fputs($ns,"$domnamern");
$result = '';
while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
if (eregi(COM_NOMATCH,$result)) { dispav($domname); } else { dispun($domname,COM_SERVER); }
echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
}
if ( (TYPE == "all" or TYPE == "net") and NET_INCLUDE )
{
$domname = DDOMAIN.".net";
$ns = fsockopen(NET_SERVER,43); fputs($ns,"$domnamern");
$result = '';
while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
if (eregi(NET_NOMATCH,$result)) { dispav($domname); } else { dispun($domname,NET_SERVER); }
echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
}

if ( (TYPE == "all" or TYPE == "org") and ORG_INCLUDE )
{
$domname = DDOMAIN.".org";
$ns = fsockopen(ORG_SERVER,43); fputs($ns,"$domnamern");
$result = '';
while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
if (eregi(ORG_NOMATCH,$result)) { dispav($domname); } else { dispun($domname,ORG_SERVER); }
echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
}

if ( (TYPE == "all" or TYPE == "info") and INFO_INCLUDE )
{
$domname = DDOMAIN.".info";
$ns = fsockopen(INFO_SERVER,43); fputs($ns,"$domnamern");
$result = '';
while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
if (eregi(INFO_NOMATCH,$result)) { dispav($domname); } else { dispun($domname,INFO_SERVER); }
echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
}

if ( (TYPE == "all" or TYPE == "biz") and BIZ_INCLUDE )
{
$domname = DDOMAIN.".biz";
$ns = fsockopen(BIZ_SERVER,43); fputs($ns,"$domnamern");
$result = '';
while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
if (eregi(BIZ_NOMATCH,$result)) { dispav($domname); } else { dispun($domname,BIZ_SERVER); }
echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
}

echo '</table>';
endborder();
if (WAIT_LAYER_ENABLED)
{
echo '<script language="javascript">
hidelayer("waitlayer");
</script>';
}

// if logging enabled write info to the file
if(WANTLOG)
{
$remote_addr = $REMOTE_ADDR;
$today = date("d-m-y H:i", time());
if (file_exists(LOGFILE) and is_writeable(LOGFILE))
{
$fp = fopen(LOGFILE,"a+");
$infolog = "Date: $today | IP: $remote_addr | ".DDOMAIN."n";
fputs($fp, $infolog);
fclose($fp);
}
}
main();
pagefooter();
}

else

{
pageheader();
main();
pagefooter();
}
?>
[/code]
Copy linkTweet thisAlerts:
@ZoeFauthorDec 20.2004 — a friend of my fiend the problem but tnx fore the help
×

Success!

Help @ZoeF spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.25,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...