获取所有数据而不命名参数mysqli bind param

时间:2014-06-16 09:47:26

标签: php mysqli

我正在寻找可以获取数据而不提供我想要获取的列名称的内容。

这是查询:

SELECT * FROM table WHERE `name` = ?

这是我用来获取的代码(但它不起作用):

$stmt->execute();
$stmt->bind_result(); // without providing the names of the columns

$result_data = array();
while ($row = $stmt->fetch()) 
{
    $result_data[] = $row;
}

我的主持人不支持get_result方法。

0 个答案:

没有答案