W pewnym sensie brakuje Ci punktu mysql_fetch_assoc()
i wiersze w MySQL:
while ($row = mysql_fetch_assoc($result)) {
echo $row['index_period'];
echo $row['index_period_1'];
echo $row['index_period_2'];
}
Wywołujesz mysql_fetch_assoc()
raz na rząd.
Nie jestem pewien, dlaczego musisz tak zapętlić swój stół, ale nie będę cię przesłuchiwał.
To może pasować do Twoich potrzeb (pisząc to aż się boję):
$index_period = array();
$index_period_1 = array();
$index_period_2 = array();
while ($row = mysql_fetch_assoc($result)) {
$index_period[] = $row['index_period'];
$index_period_1[] = $row['index_period_1'];
$index_period_2[] = $row['index_period_2'];
}
foreach ($index_period as $value) {
echo "<td>a" . $value . "</td>";
}
foreach ($index_period_1 as $value) {
echo "<td>b" . $value . "</td>";
}
foreach ($index_period_2 as $value) {
echo "<td>c" . $value . "</td>";
}