从提交表单获取变量到php而不重定向页面

时间:2017-02-22 04:27:34

标签: php html forms post get

首先我声明一个空的php变量:

<?php $ip = ' '; ?>

我有这样的表格:

<form method="POST" action="hostnameip.php">
   <div class="form-group">
      <label for="hostname" style="color:white;">Hostname</label>
      <input type="text" style="text-align:center;" class="form-control" id="hostname">
   </div>
   <div class="row">
      <div class="col-xs-12">
         <button type="submit" value="click" name="submit" class="btn btn-primary btn-lg">Resolve</button>
      </div>
   </div>
</form>

我有这个PHP脚本:

<?php
  function hostnametoip(){
     $url = $_GET['hostname'];
     $ip = gethostbyname($url);
     return $ip;
  }
?>

我需要的是将我的输入提交到我的php脚本并在表单提交上运行函数但没有刷新页面..理论上这应该运行带有表单输入的php脚本并从输入获取主机名的ip保存到变量$ ip,然后我使用jquery刷新div显示IP ..我的jquery工作,但我没有发送变量和运行PHP没有刷新页面..谢谢你

0 个答案:

没有答案