dns_get_record使用表单中的帖子

时间:2013-10-23 23:15:53

标签: php dns

我正在尝试基于dns_get_record创建一个简单的DNS查询。我已经在网上搜索了这方面的支持,但无济于事!很可能是因为它是一种陈旧且过时的方法。不过,我很难找到一个表单来处理php。任何帮助将不胜感激。

的index.html

<html>
<body>

<form action="dns.php" method="post">
Name: <input type="text" name="search"><br>
<input type="submit">
</form>

</body>
</html>

dns.php

<?php
$search = test_input($_POST["search"]);
$result = dns_get_record($search, DNS_ANY, $authns, $addtl);
echo "Result = ";
print_r($result);
echo "Auth NS = ";
print_r($authns);
echo "Additional = ";
print_r($addtl);
?>

1 个答案:

答案 0 :(得分:0)

您是否尝试过没有test_input功能?

$search = $_POST["search"];