I am creating a class for an application "backbone" and I need this function to query the db, and return a multidimensional to look like th开发者_高级运维is:
$myArray = ("name"=>"John", "dob"=>"January 5, 1955");
Of course the data for the array is from a database query. but, "name" and "dob" would be the database column name and "John" and "January 5, 1955" would be the value of the column
Here is my code:
public function getFrame($id) {
$getFrameQuery = "SELECT * FROM " . DB_FRAMETABLE . "WHERE `fhid`=" . $this->quote_smart($id);
$getFrameRecord = $db->query_first($getFrameQuery);
}
Any help is greatly appreciated!
Josh
What database wrapper are you using? They usually provide a way to retrieve a row into an associative array.
mysql_fetch_assoc(), for example
From your comment to the other answer, the wrapper you are using provides a ->fetch_array() method that returns the data structure you are looking for.
Looks like you would need to change your code to use something like
$result = $db->query($getFrameQuery);
$data = $db->fetch_array($result);
This isn't a multidimensional array. Just a regular associative array.
精彩评论