Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ช่วยหน่อยครับจนปัญญา เช็คโดเมนว่าง .co.th , in.th ยังไงครับ



 

ช่วยหน่อยครับจนปัญญา เช็คโดเมนว่าง .co.th , in.th ยังไงครับ

 



Topic : 045593



โพสกระทู้ ( 27 )
บทความ ( 0 )



สถานะออฟไลน์




ช่วยหน่อยครับจนปัญญา เช็คโดเมน co.th , in.th ยังไงครับ

คือ ตอนนี้ผมใช้ microwhois อยู่ครับ แล้ว อยากจะเพิ่ม .co.th - in.th ลงไป แต่ เพิ่มไปแล้ว มันก็ยังเช็คไม่ได้ มันขึ้น ว่าโดเมนนี้ไม่ว่างตลอด ทั้งๆที่ มันไม่มีคนจด

นั่งแก้มาเกือบวัน แล้ว ยังทำไม่ได้ ใครพอมีวิธีมั่งครับ รบกวนหน่อยครับ

ac.th|whois.thnic.net|No entries|whois.thnic.net|whois.thnic.net|
co.th|whois.thnic.net|No entries|whois.thnic.net|whois.thnic.net|
go.th|whois.thnic.net|No entries|whois.thnic.net|whois.thnic.net|
in.th|whois.thnic.net|No entries|whois.thnic.net|whois.thnic.net|
mi.th|whois.thnic.net|No entries|whois.thnic.net|whois.thnic.net|
net.th|whois.thnic.net|No entries|whois.thnic.net|whois.thnic.net|
or.th|whois.thnic.net|No entries|whois.thnic.net|whois.thnic.net|

ค่าด้านบนผม เปลี่ยนไป เปลี่ยนมา + เปลี่ย่น เป็นตัวหใม่แล้วก็ยังไม่ได้เลย

ขอบคุณมากๆ ครับ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-07-17 09:44:57 By : bouy2208 View : 2088 Reply : 3
 

 

No. 1



โพสกระทู้ ( 27 )
บทความ ( 0 )



สถานะออฟไลน์


Code
<?php
function checkDomain($domain,$server,$findText){
// Open a socket connection to the whois server
$con = fsockopen($server, 43);
if (!$con) return false;

// Send the requested doman name
fputs($con, $domain."\r\n");

// Read and store the server response
$response = ' :';
while(!feof($con)) {
$response .= fgets($con,128);
}

// Close the connection
fclose($con);

// Check the response stream whether the domain is available
if (strpos($response, $findText)){
return true;
}
else {
return false;
}
}

function showDomainResult($domain,$server,$findText){
if (checkDomain($domain,$server,$findText)){
echo "<tr><td>$domain</td><td>AVAILABLE</td></tr>";
}
else echo "<tr><td>$domain</td><td>TAKEN</td></tr>";
}
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>MicroWhois domain checker</title>
<link href="style/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="main">
<div id="caption">DOMAIN LOOKUP</div>
<div id="icon">&nbsp;</div>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="domain" id="domain">
Domain name:
<table>
<tr><td><input class="text" name="domainname" type="text" size="36"/></td></tr>
<tr>
<td>
<input type="checkbox" name="all" checked />All
<input type="checkbox" name="com"/>.com
<input type="checkbox" name="net"/>.net
<input type="checkbox" name="org"/>.org
<input type="checkbox" name="info"/>.info
<input type="checkbox" name="coth"/>.co.th
<input type="checkbox" name="inth"/>.in.th
</td></tr>
<tr><td align="center"><br/><input class="text" type="submit" name="submitBtn" value="Check domain"/></td></tr>
</table>
</form>
<?php
if (isset($_POST['submitBtn'])){
$domainbase = (isset($_POST['domainname'])) ? $_POST['domainname'] : '';
$d_all = (isset($_POST['all'])) ? 'all' : '';
$d_com = (isset($_POST['com'])) ? 'com' : '';
$d_net = (isset($_POST['net'])) ? 'net' : '';
$d_org = (isset($_POST['org'])) ? 'org' : '';
$d_info = (isset($_POST['info'])) ? 'info' : '';
$d_coth = (isset($_POST['coth'])) ? 'coth' : '';
$d_inth = (isset($_POST['inth'])) ? 'inth' : '';

// Check domains only if the base name is big enough
if (strlen($domainbase)>1){
?>
<div id="caption">RESULT</div>
<div id="icon2">&nbsp;</div>
<div id="result">
<table width="100%">
<?php
if (($d_com != '') || ($d_all != '') ) showDomainResult($domainbase.".com",'whois.crsnic.net','No match for');
if (($d_net != '') || ($d_all != '') ) showDomainResult($domainbase.".net",'whois.crsnic.net','No match for');
if (($d_org != '') || ($d_all != '') ) showDomainResult($domainbase.".org",'whois.publicinterestregistry.net','NOT FOUND');
if (($d_info != '') || ($d_all != '') ) showDomainResult($domainbase.".info",'whois.afilias.net','NOT FOUND');
if (($d_coth != '') || ($d_all != '') ) showDomainResult($domainbase.".co.th",'whois.thnic.net','No entries');
if (($d_inth != '') || ($d_all != '') ) showDomainResult($domainbase.".in.th",'whois.thnic.net','No entries found');
?>
</table>
</div>
<?php
}
}
?>
<div id="source">Micro Whois 1.1</div>
</div>
</body>







Date : 2010-07-17 09:47:33 By : bouy2208
 


 

No. 2

Guest


whois.thnic.net
Date : 2011-06-06 21:11:21 By : tt
 

 

No. 3

Guest


เปลี่ยนเป็นแบบนี้แทนนะครับ

.in.th|https://www.thnic.co.th/domain_avail_api.php?domain=|HTTPREQUEST-1
.ac.th|https://www.thnic.co.th/domain_avail_api.php?domain=|HTTPREQUEST-1
.co.th|https://www.thnic.co.th/domain_avail_api.php?domain=|HTTPREQUEST-1
.go.th|https://www.thnic.co.th/domain_avail_api.php?domain=|HTTPREQUEST-1
.mi.th|https://www.thnic.co.th/domain_avail_api.php?domain=|HTTPREQUEST-1
.net.th|https://www.thnic.co.th/domain_avail_api.php?domain=|HTTPREQUEST-1
.or.th|https://www.thnic.co.th/domain_avail_api.php?domain=|HTTPREQUEST-1

ref: http://www.thaihosttalk.com/topic/31807-%E0%B8%95%E0%B8%AD%E0%B8%99%E0%B8%99%E0%B8%B5%E0%B9%89-whois-server-%E0%B8%82%E0%B8%AD%E0%B8%87-thnic-%E0%B8%9A%E0%B8%99-whmcs-%E0%B9%80%E0%B8%9B%E0%B9%87%E0%B8%99%E0%B8%AD%E0%B8%B0%E0%B9%84%E0%B8%A3%E0%B8%84%E0%B8%A3%E0%B8%B1%E0%B8%9A/
Date : 2011-06-09 10:19:27 By : coca
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยหน่อยครับจนปัญญา เช็คโดเมนว่าง .co.th , in.th ยังไงครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่