Hello,
I have problem with array: I don't know how to build this array dynamically from database (mySql) :
$description = "test";
$recipients = array($description,'somethink')
this last element "somethink" shoud be taken from database and repeated x-times (I mean that each record from DB shoud change "somethink")... so after this Array shoud looks like this:
$description = "test";
$recipients = array($test,'somethink1','somethink2','somethink3','somethink4','somethink5','somethink6','somethink7',...,'somethink1291')
I'm looking forward for your answers.😃 😃 🆒