php通过前端传来的值作为 数据库表名查询数据 并且再返回所有数据给前端?
php 代码
<?php
header("Access-Control-Allow-Origin: *");
header("Content-type:text/html;charset=utf-8");
$url = "mysql: host=localhost;dbname=testing";
$user = "root";
$pwd = "0123456zp";
$conn=new PDO($url,$user,$pwd);
$conn->query("set names utf8");
$name=$_GET["name"];//姓名
$sql = "select * from $name";
$rst = $conn->query($sql);
$result=$rst->fetchAll();
echo json_encode($result,JSON_UNESCAPED_UNICODE);
前端代码
$.ajax({
url: "../action/s.php",
type: "get",
data:{"id":names},
success: function (res) {
var data = jQuery.parseJSON(res);
}
});
求前辈指点 给修改一下怎么实现 谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论