Introducere ID si nota selectata din html in baza de date
Scris: Lun Oct 17, 2016
Salutare,
Am urmatoarea baza de date:
personal
Valorile din baza de date vreau sa il intrduc intr-un tabel de forma aceasta:
Ca sa aduc valorile in tabel am procedat in felul urmator:
Dupa ce aleg din select nota dorita pentru fiecare persoana vreau ca toate notele sa le trimit intr-o tabela:
Am butonul de submit:
tabelul unde vreau sa trimit valorile este de forma aceasta:
Nu stiu cum pot adauga td-urilor un atribut cu ID-ul personalului si notelor ca ulterior sa le pod aduce in tabelul dorit.
Multumesc!
Am urmatoarea baza de date:
personal
Cod: Selectaţi tot
+------+-----------+------------+
| ID | NUME | PRENUME |
+------+-----------+------------+
| 1 | POPESCU | Nicu |
| 2 | IONESCU | ION |
+------+-----------+------------+
Cod: Selectaţi tot
<table>
<tr>
<th>Numele angajatului</th>
<th>Nota acordata</th>
</tr>
<?php include"query_tbl_personal.php"; ?>
</table>
Cod: Selectaţi tot
.....
$sql = "SELECT NUME, PRENUME, TIP, ID
FROM personal
....
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
$nota = 10;
echo "<tr><td>" $row["NUME"]. ' '. $row["PRENUME"]. "<br/></td>";
echo "<td>";
echo "<select autocomplete='off'>
<option disabled selected>-- Alege nota --</option>";
for( $i = 1; $i <= $nota; $i++ ) {
echo "<option value='$i'>$i</option>\n";
};
echo "</select></td></tr>";
}
}
...
Am butonul de submit:
Cod: Selectaţi tot
<form action="insert_value_mysqli.php" method="POST">
<input type="submit" name="insert" value="Submit">
</form>
Cod: Selectaţi tot
+----+-------------+------+
| ID | ID_PERSONAL | NOTA |
+----+-------------+------+
| 1 | 1 | 7 |
| 2 | 2 | 9 |
+----+-------------+------+
Multumesc!