我可以做些什么来修复我的代码?我在运行程序时收到以下错误消息:
致命错误:在第 12 行的 C:\apache2\Apache2\htdocs\ch\ch32\listing32_2(1).php 中调用未定义的方法 PDOStatement::fetch_row()
<?php
// Instantiate the mysqli class
$db = new PDO("mysql:host=localhost;dbname=coorporate", "root", "xxxxxxxx");
// Assign the employeeID
$eid = htmlentities($_POST['id']);
// Execute the stored procedure
$result = $db->query("SELECT calculate_bonus('$eid')");
$row = $result->fetch_row();
printf("Your bonus is \$%01.2f",$row[0]);
?>