在'onexit'或'onsubmit之后,查询mysql并填充表单字段而不离开页面php js

时间:2012-07-07 15:19:21

标签: php javascript mysql

我正在尝试使用MySQL数据填充一些表单字段。

我希望能够在文本字段中输入值,使用字段中的值搜索数据库,然后使用结果填充其余表单字段而不离开页面。

非常感谢任何指导。

3 个答案:

答案 0 :(得分:1)

使用jQuery post从数据库中获取数据

在带输入的页面上:

$.post("pageWhereYouGetData.php", {valueYouWantToQueryTheDBWith: $("input.info").val()}, function(data){
    var dataArray = data.join(", ");
    //do stuff with inputs here like: $("input.moreInfo").val(dataArray[0]) which would set the value of your input to the value of the row 'row1' from the database
});

pageWhereYouGetData.php:

$results = mysql_fetch_assoc(mysql_query("SELECT row1, row2, row3 FROM table WHERE rowName = '" . mysql_real_escape_string($_POST['valueYouWantToQueryTheDBWith']) . "'"));

$data = array($results['row1'], $results['row2'], $results['row3']);
echo explode(", ", $data);

在这里,您要创建一个数组,其中包含您需要的数据,将其转换为字符串,然后将其回显。在javascript方面,你将它转换回一个数组(因为你不能通过ajax发送变量,只有值),然后使用数组来填充你的输入。

我们的想法是在不重新加载页面的情况下发送数据,将其转换为字符串,在获取数据后将其转换回来,然后按照我们的意愿使用它。

答案 1 :(得分:1)

你可以使用AJAX - 使用你的输入提交按钮来激活一个php文件来搜索数据库。

这使我们进入MySQL搜索。您将要使用FULLTEXT搜索数据库(此处有大量文档http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html)。或者,如果搜索不复杂,您应该使用SELECT * WHERE。然后回显你找到的数据。

AJAX请求将返回回显的内容,然后您可以使用一些JQuery来填充您喜欢的数据元素。

答案 2 :(得分:0)

我最终修改了我找到的这个脚本。它不在同一页面上,但执行我需要的功能。当用户输入值并退出该字段时,将根据匹配表检查该值。然后它将结果返回到调用页面,其中包含字段中的值。

将其放置在包含表单元素的页面中:

function showData(str)
{
if (str=="")
  {
  document.getElementById("txtHint").innerHTML="";
  return;
  } 
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","get_listing_data.php?q="+str,true);
xmlhttp.send();
}


<input type="text" name="mls_id" id="mls_id" onchange="showData(this.value)">

<div id="txtHint"></div> // this is where the populated fields appear

这是执行查询并将结果返回到第一个文件的文件 - 从第一个文件调用。

$link = mysql_connect("localhost","name","pw") or die ("No database connection -     please try again later.");
$db = mysql_select_db("db", $link); 

$q=$_GET["q"];

$sql="SELECT * FROM table WHERE MLS_LISTING_ID = '$q'";

$result = mysql_query($sql);

while($row = mysql_fetch_array($result))
  {
 echo "<input type=\"text\" name=\"agent_name\" id=\"agent_name\" value=" . $row    ['MLS_AGENT_NAME'] . " readonly=\"readonly\">";
 echo "<input type=\"text\" name=\"sale_price\" id=\"last_name\" value=" . $row['SALE_PRICE'] . " readonly=\"readonly\">";
 echo "<input type=\"text\" name=\"street_number\" id=\"last_name\" value=" . $row['STREET_NUMBER'] . " readonly=\"readonly\">";
 echo "<input type=\"text\" name=\"street_name\" id=\"last_name\" value=" . $row['STREET_NAME'] . " readonly=\"readonly\">";
  }