目前,我正在使用 azure app service 和 azure database server for mysql 进行编码。
当执行'select'语句时,只返回'1'。
我认为这不是连接问题,因为“插入”语句工作正常。
这是我在 azure app 服务上运行的 php 代码。
error_reporting(E_ALL);
ini_set('display_errors',1);
include('dbconnectr.php');
$id = $_GET['id'];
$stmt = $con->prepare('select * from contents where id='.$id);
$stmt->execute();
$result = $stmt->fetch();
echo $result;
问题是什么?