How to select multiple rows from mysql with one query and use them in php

前端 未结 3 2109
旧巷少年郎
旧巷少年郎 2020-11-28 15:02

I currently have a database like the picture below.

\"enter

Where there is a

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 16:06

    Use repeated calls to mysql_fetch_assoc. It's documented right in the PHP manual.

    http://php.net/manual/function.mysql-fetch-assoc.php

    // While a row of data exists, put that row in $row as an associative array
    // Note: If you're expecting just one row, no need to use a loop
    // Note: If you put extract($row); inside the following loop, you'll
    //       then create $userid, $fullname, and $userstatus
    while ($row = mysql_fetch_assoc($result)) {
        echo $row["userid"];
        echo $row["fullname"];
        echo $row["userstatus"];
    }
    

    If you need to, you can use this to build up a multidimensional array for consumption in other parts of your script.

提交回复
热议问题