我有移动 jquery 搜索,我的问题是对于 href 链接搜索,输入框没有要搜索的值。只有带有 href 的列表框,我想在 $_POST 中使用 $value 在 mysql 中进行搜索。
我的PHP代码
<!DOCTYPE html>
<?php
include_once('database.php');
$db = new database($con);
$db->dbconnect();
$array_names = $db->populate_li();
?>
<div data-role="page" id="filterMe">
<div data-role="content">
<ul data-role="listview" data-filter="true">
<?php
foreach($array_names as $value) {
echo "<li class='ui-screen-hidden'>"."<a href='#'>".$value ."</a></li>" . "</br>"; }?>
</ul>
</div> <a href="#" data-role="button" class="val">Retrieve values</a>
<p class="values"></p>
</div>