我看过很多教程,但是它们太令人困惑了,为了做我想做的事,我只是不知道如何使用这些教程中的现有内容并让它们按照我想要的方式工作。
我有一个图标 @homepage 。当用户点击它时,我想做一个查询“select * from tablename”,并在特定的 div 中显示结果。
有人可以告诉我如何实现吗?我只需要一些非常基本的东西来让我开始。任何帮助表示赞赏。
谢谢你。
<html>
<head>
<script type="text/JavaScript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/JavaScript">
$(function() {
$("#buttonId#).click(function() {
$("#divToUpdate").load("/scriptPhp.php");
});
</script>
</head>
<body>
<input id="buttonId" type="button" value="click me!" />
<br />
<div id="divToUpdate">
</div>
</body>
</html>
在您的 scriptPHP.php 文件中:
<table>
<thead>
<tr>
<th>Cell 1</th>
<th>Cell 2</th>
</tr>
</thead>
<tbody>
<?php
$pdo = new Pdo("mysql:host=localhost;dbname=nameOfTheDatabase;charset=utf8", "username", "password");
$rows = $pdo->query("SELECT * FROM tablename")->fetchAll(PDO::FETCH_ASSOC);
foreach ($rows as $row) {
?>
<tr>
<td><?php echo $row['cell_1']; ?></td>
<td><?php echo $row['cell_2']; ?></td>
</tr>
<?php
}
?>
</table>
该文档几乎解释了它自己:http ://www.php.net/manual/en/mysqli.construct.php http://www.php.net/manual/en/mysqli.query.php
$mysqli = new mysqli('localhost', 'my_user', 'my_password', 'my_db');
if ($mysqli->connect_error) {
die('Connect Error (' . $mysqli->connect_errno . ') '
. $mysqli->connect_error);
}
$result = $mysqli->query("SELECT 1;");
while(($row = $result->fetch_assoc()) != NULL) {
//use rows
}
$mysqli->close();