forked from phpWhois/phpWhois
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
executable file
·64 lines (53 loc) · 1.65 KB
/
example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>whois.php -base classes to do whois queries with php</title>
<style type="text/css">
</style>
</head>
<body>
<center>
<h1>phpWhois {ver} - base class to do whois queries with php</h1>
<p>
© 1999 - 2011 <a href="http://www.easydns.com/">easyDNS
Technologies Inc.</a> & <a href="http://mark.jeftovic.net/">Mark Jeftovic</a><br/>
Now maintained and hosted by David Saez at <a href="http://www.ols.es">OLS 20000</a><br/>
Placed under the GPL. See the LICENSE file in the distribution.
</p>
<table>
<tr><td bgcolor="#55aaff">
<form method="get" action="{self}">
<table>
<tr><td colspan="3" align="center">
<b>Enter any domain name, ip address or AS handle you would like to query whois for</b>
<br/><br/>
<input name="query" /> <input type="submit" value="Whois" /><br/>
</td></tr>
<tr>
<td>
<input type="radio" name="output" value="normal" /> Show me regular output<br/>
<input type="radio" name="output" value="nice" checked="checked" /> Show me HTMLized output<br/>
<input type="radio" name="output" value="object" /> Show me the returned PHP object
</td>
<td align="left" valign="top">
<input type="checkbox" name="fast" value="1" /> Fast lookup
</td>
<td align="right" valign="bottom">
<a href="http://www.phpwhois.org" title="phpWhois web page">
<img border="0" src="whois.icon.png" alt="phpWhois web page" /></a>
</td>
</tr>
</table>
</form>
</td></tr>
</table>
</center>
<!--results-->
<p><b>Results for {query} :</b></p>
<blockquote>
{result}
</blockquote>
<!--/results-->
</body>
</html>