Coba ini:
<?php
//Create the query
$sql = "SELECT `name` FROM Employees";
//Run the query
$query_resource = mysql_query($sql);
//Iterate over the results that you've gotten from the database (hopefully MySQL)
while( $employee = mysql_fetch_assoc($query_resource) ):
?>
<span><?php echo $employee['name']; ?></span>
<input type="checkbox" name="employees[]" value="<?php echo $employee['name']; ?> /><br />
<?php endwhile; ?>
Contoh yang Anda lihat di atas bergantung pada dua hal untuk benar-benar berfungsi dengan baik:
- Anda menggunakan MySQL
- Kueri SQL Anda harus mengambil nama karyawan (sehingga Anda dapat menggunakannya dalam pengulangan