I have the following query on a page:
$bericht = "SELECT bericht_id, // mesage_id
profiel_id //profile_id,
bericht, // message
verzonden // sended datetime
FROM
berichten //messages";
I don’t need these values in a loop, I just need these values for three other queries. So how do I create variables from these values to use in three other queries on the same page?
Thank you in advance