$result = mysql_query ("Select * from klient ");
echo '<table width="95%" border="0">';
do {
$myrow = mysql_fetch_array($result);
printf("
<tr>
<th scope='col'>%s</th>
<th scope='col'>%s</th>
<th scope='col'>%s</th>
<th scope='col'>%s</th>
<th scope='col'>%s</th>
</tr>", $myrow['id'], $myrow['name'], $myrow['phone'], $myrow['date'], $myrow['time']);
}
while (mysql_fetch_array($result));
echo '</table>';
Почему то выводит не все значения, а только их часть.