Answer the question
In order to leave comments, you need to log in
How to add data from another table?
Hello. I make such a request (based on codeigniter with its orm, but I think it will be clear)
$this->db->where('id_sender', $id_contact);
$this->db->where('id_recipient', $id_user);
$this->db->limit(5);
$this->db->order_by('id', 'desc');
$data = $this->db->get('messages');
$data = $this->db->query("SELECT
a.*,
b.*,
FROM messages AS a LIMT 5
LEFT JOIN icons AS b ON b.name = a.content
WHERE (a.id_sender = $id_contact AND a.id_recipient = $id_user) ORDER BY a.id DESC");
Answer the question
In order to leave comments, you need to log in
The word LIMIT is not correctly spelled and it seems to be at the very end of the request.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question