如何从数据库中获取数据并在php页面上回显?
如何从数据库中获取日期并在PHP页面上回显?
$query = $pdo->prepare('SELECT * FROM shop WHERE shopname=:shopname');
$query->bindParam(':shopname', $shopname, PDO::PARAM_STR);
$query->execute();
$result = $query->fetchAll(PDO::FETCH_ASSOC);
echo "$result['shopid']";
这给了我以下错误:
解析错误:语法错误,意外的''(T_ENCAPSED_AND_WHITESPACE),等待标识符(T_STRING)或变量(T_VARIABLE)或编号(T_NUM_STRING)
echo "$result['shopid']";
此行不正确
echo $result["shopid"];
// OR
echo "{$result['shopid']}";
删除双引号,改变
echo "$result['shopid']";
同
echo $result['shopid'];
链接地址: http://www.djcxy.com/p/69933.html