wieso machst Du das hier:
$row = mysql_fetch_array($result);
und später bei while
$line = ........
??????
$row = mysql_fetch_array($result);
und später bei while
$line = ........
??????
<?php
/* Ausgabe der Ergebnisse in HTML */
echo "<table width='90%' border='0' cellpadding='8'
class='tablestyle'>";
echo '<tr style="vertical-align: top">
<td style="text-align: left"><b>Benutzername</b></td>
<td colspan="2"><b>Aktivieren</b></td>
</tr>';
while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo "<tr>";
foreach ($line as $col_value) {
echo "<td>$col_value</td>";
echo '<td><input name="active" type="checkbox"
id="active" value="'.$username.'"></td>';
}
echo "</tr>";
}
echo "</table>"; ;
?>
$daten = mysql_query (...);
while ( $dsatz = mysql_fetch_assoc ( $daten ) ) {
echo $dsatz [ 'belibiges feld aus deine tabelle' ];
echo '<input ... ' . $dsatz [ 'username' ] . '>';
}
// DB Verbindung
$active = "0";
$sql = "SELECT
username
FROM
awaiting
WHERE
active = '".$active."'";
$result = mysql_query($sql) OR die(mysql_error());
$row = mysql_fetch_assoc($result);
// Variablen
$username = $row['username'];
<?php
// Tabelle
/* Ausgabe der Ergebnisse in HTML */
echo "<table width='90%' border='0' cellpadding='8'
class='tablestyle'>";
echo '<tr style="vertical-align: top">
<td style="text-align: left"><b>Benutzername</b></td>
<td colspan="2"><b>Aktivieren</b></td></tr>';
while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo "<tr>";
foreach ($line as $col_value) {
echo "<td>$col_value</td>";
echo '<td><input name="active" type="checkbox"
id="active" value="'.$username.'"></td>';
}
echo "</tr>";
}
echo "</table>";
?>
Kommentar