<?php
$res_best=mysql_query("SELECT * FROM best");
$best=array();
while($best=mysql_fetch_assoc($res_best)){
$best['username'];
}
var_dump(
makeHTTPRequest('sendMessage',[
'chat_id'=>$chat_id,
'text'=>$best
])
);
?>
I want save while in variable and use this variable in var_dump for telegram bot. how can i use this while for text?