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