从mysqli查询中检索值,并将其分配给php变量

时间:2015-04-09 12:34:48

标签: php mysqli fetch

我正在获取插入mysql数据库的最后一行的ID。

我想获取ID并分配给php变量,我可以使用脚本中的其他位置。

我更喜欢这种做法最通用的方法。所以就像mysqli_fetch_all(BOTH)一样。

在没有循环结果的情况下,我似乎无法做到这一点。有更干净的方式吗?

    $query = "SELECT ID FROM Title
    ORDER BY ID DESC
    LIMIT 1";

    $stmt = $conn->prepare($query);
    $stmt->execute();

    //Get the result and bind it to a php variable that can be used 
    //in another part of the script

    //free result
    //?
    //close statement
    $stmt->close();

0 个答案:

没有答案