これを試してみてください:
<?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; ?>
上記の例は、実際に正しく機能するために2つのことに依存しています。
- MySQLを使用しています
- SQLクエリは従業員の名前を取得する必要があります(ループで使用できるようにするため)