There is a table with data:
Dialog id: 12345 Dialog id: 12345 Dialog id: 12346 Need to withdraw:
Dialog id: 12345 Dialog id: 12346 Here is the output code:
$dialogs = mysql_query("SELECT * FROM konsultant"); while ($dia = mysql_fetch_array($dialogs)) { echo ' <tr> <td style="border-bottom:0px;">'.$dia['dialog_id'].'</td> <td style="border-bottom:0px;">'.$dia['client_ip'].'</td> <td style="border-bottom:0px;">'.$dia['client_msg'].'</td> </tr>'; }