如何通过PHP从SQL获取数据?

时间:2017-03-05 12:46:34

标签: php mysql


我的学校项目有问题 我有一个表格,我将数据发布到SQL数据库(名称,年龄,城市) - 这没关系 我怎么办,当我发布数据时,我会在下一个php网站上显示它(确认后)? 从post.php到show.php的数据?id = xxx(其中ID是用户的ID)...
在show.php中我想显示数据作为名称,年龄,城市用户ID和链接到show.php?id = xxx
非常感谢你: - )

1 个答案:

答案 0 :(得分:1)

首先从get参数中提取id: $id = $_GET["id"] 然后执行选择查询。类似的东西:

$stmt = $mysqli->prepare("SELECT age, name, city FROM student WHERE id = ?");
$stmt->bind_param('i', $id);
$stmt->execute();
$stmt->bind_result($age, $name, $city);
$stmt->fetch();
// now $age, $name and $city are set with the values from mySql