- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近发现了这个教程 http://www.infotuts.com/create-ajax-based-search-system-php-jquery/并注意到所有结果都显示在search.php中,而search.php是通过ajax调用并显示在index.php中。每当我尝试将其集成到我的网站中时,我的index.php 包含一个 $id 变量,如以下网址所示: (index.php?id=1) 我的问题是,我似乎无法让它知道我的 $id 是什么。因此,我无法将 search.php 中的查询更改为我喜欢的内容。
$query = mysql_query("select * from userdetail where name like '{$term}%'", $connection);
这是我上面的原始查询,但是我想让它依赖于页面的 id,所以......:
$query = mysql_query("select * from userdetail where id = '$id' AND name like '{$term}%'", $connection);
唯一的问题是,search.php 不知道我的 $id 变量是什么,即使我从 index.php 加载它也不起作用。有人可以帮忙吗?
完整的代码可以在教程中看到,但我可以在这里向大家展示。搜索.php
<?php
$connection = mysql_connect('localhost', 'root', '12345');
$db = mysql_select_db('userdata', $connection);
$term = strip_tags(substr($_POST['searchit'],0, 100));
$term = mysql_escape_string($term); // Attack Prevention
if($term=="")
echo "Enter Something to search";
else{
$query = mysql_query("select * from userdetail where id = '$id' AND name like '{$term}%'", $connection);
$string = '';
if (mysql_num_rows($query)){
while($row = mysql_fetch_assoc($query)){
$string .= "<b>".$row['name']."</b> - ";
$string .= $row['email']."</a>";
$string .= "<br/>\n";
}
}else{
$string = "No matches found!";
}
echo $string;
}
?>
这是index.php
<html>
<head>
<title>Ajax Based Search- InfoTuts</title>
<?php
$id = ((int)$_GET["id"]);
?>
<style type="text/css" >
#main {
padding: 10px;
margin: 100px;
margin-left: 300px;
color: Green;
border: 1px dotted;
width: 520px;
}
#display_results {
color: red;
background: #CCCCFF;
}
</style>
<script type="text/javascript "src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
$("#search_results").slideUp();
$("#button_find").click(function(event){
event.preventDefault();
search_ajax_way();
});
$("#search_query").keyup(function(event){
event.preventDefault();
search_ajax_way();
});
});
function search_ajax_way(){
$("#search_results").show();
var search_this=$("#search_query").val();
$.post("search.php", {searchit : search_this}, function(data){
$("#display_results").html(data);
})
}
</script>
</head>
<body>
<div id="main">
<h1>Ajax Based Search System- InfoTuts</h1>
<form id="searchform" method="post">
<label>Enter</label>
<input type="text" name="search_query" id="search_query" placeholder="What You Are Looking For?" size="50"/>
<input type="submit" value="Search" id="button_find" />
</form>
<div id="display_results"></div>
</div>
</body>
</html>
最佳答案
试试这个
在search.php文件中添加以下代码以接受index.php文件中的id
<code>
$term = mysql_escape_string($term); // Attack Prevention
$id = $_POST['id'];
if(!empty($id)) {
$query = mysql_query("select * from userdetail where id = '$id' AND name like '{$term}%'", $connection);
} else {
$query = mysql_query("select * from userdetail where name like '{$term}%'", $connection);
}
if($term=="")
echo "Enter Something to search";
</code>
在index.php 文件中将$id 变量值与ajax 请求一起发送。
<code>
function search_ajax_way(){
$("#search_results").show();
var search_this=$("#search_query").val();
var id_val=$("#id").val();
$.post("search.php", {searchit : search_this, id : id_val}, function(data){ $("#display_results").html(data);}
</code>
在html中添加id的输入隐藏字段
<code>
<form id="searchform" method="post">
<label>Enter</label>
<input type="text" name="search_query" id="search_query" placeholder="What You Are Looking For?" size="50"/>
<input type='hidden' value='<?php echo $id; ?>' id='id'/>
<input type="submit" value="Search" id="button_find" />
</form>
</code>
关于php - 在另一个文件中携带 $id 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28360213/
数据: structure(list(id = c(1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 4, 4, 5), ax = c("a", "a", "b
我目前正在离散数学课上做一个项目,我们必须编码: 1.) RippleCarryAdder:它是一个用于添加固定大小的 5 位整数的电路。参数: x_array: operand 1, i.e. an
所以我已经让这两个数组在不需要携带任何东西时正确添加。所以 a[0,1,1] + b[0,1,1] 会给我 c[0,0,2,2],但如果我类似地做 a[0,9,9] + b[0, 9,9] 我只得到
我正在尝试使用 getline 从 .csv 文件中获取数据,但它不会在换行符处停止。代码: while (file.good()) { getline(file, value, ',
下面是我的代码 from docutils.core import publish_string from docutils.writers.html4css1 import Writer as Hi
我是一名优秀的程序员,十分优秀!