从数据库中读取条目

reading entries from database

有人能找出下面这段代码中出了什么问题吗?它只显示一个空白页。我是 PDO 的新手,一直使用 mysqli,但有人告诉我尝试 PDO,因为我的页面在显示阿拉伯字符时出现问题。

    <html>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<?php
/* Connect to an ODBC database using driver invocation */
$dsn = 'mysql:dbname=testdb;host=127.0.0.1;charset=UTF8;' 
$user = 'dbuser'; // don't hardcode this...store it elsewhere
$password = 'dbpass'; // this too...

try {
  $dbh = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
  echo 'Connection failed: ' . $e->getMessage();
}

$sql = "SELECT :column FROM :table";
$opts = array(
  ':column' => 'Name',
  ':table' => 'Mothakirat'
);
$dbh->beginTransaction();
$statement = $dbh->prepare($sql);
if ($statement->execute($opts)) {
  $resultArray = array();     // If so, then create a results array and a temporary one
  $tempArray = array();           // to hold the data

  while ($row = $result->fetch_assoc()) // Loop through each row in the result set    
  {
    $tempArray = $row;    // Add each row into our results array
    array_push($resultArray, $tempArray);
  }
  echo json_encode($resultArray);     // Finally, encode the array to JSON and output the results
}
$dbh->commit();
</html>

我的 IDE 中没有检查过解析错误。我使用 netbeans,它非常好并且可以在多个平台上使用。

<html>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<?php

/* Connect to an ODBC database using driver invocation */
$dsn = 'mysql:dbname=testdb;host=127.0.0.1;charset=UTF8;';
$user = 'dbuser'; // don't hardcode this...store it elsewhere
$password = 'dbpass'; // this too...

try {
  $dbh = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
  echo 'Connection failed: ' . $e->getMessage();
}

$sql = "SELECT :column FROM :table";
$opts = array(
  ':column' => 'Name',
  ':table' => 'Mothakirat'
);
$dbh->beginTransaction();
$statement = $dbh->prepare($sql);
if ($statement->execute($opts)) {
  $resultArray = array();     // If so, then create a results array and a temporary one
  $tempArray = array();           // to hold the data

  while ($row = $result->fetch_assoc()) // Loop through each row in the result set    
  {
    $tempArray = $row;    // Add each row into our results array
    array_push($resultArray, $tempArray);
  }
  echo json_encode($resultArray);     // Finally, encode the array to JSON and output the results
}
$dbh->commit();
?>
</html>