I\'ve got a problem with the mysqli result set. I have a table that contains a bunch of messages. Every table row represents one message. I have a few columns like ID, title
If i get you right, you want to achieve something that is produced by:
$result = $link->query("SELECT * FROM messages WHERE public = '1'");
$messages = array();
while($singleMessage = $result->fetch_assoc()){
$messages[$singleMessage]['title'] = $singleMessage['title'];
$messages[$singleMessage]['body'] = $singleMessage['body'];
}
This will get you an 2 dimensional array, using the ID as key.