इसे आज़माएं:
<?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; ?>
ऊपर जो उदाहरण आप देख रहे हैं वह वास्तव में ठीक से काम करने के लिए दो चीजों पर निर्भर करता है:
- आप MySQL का उपयोग कर रहे हैं
- आपकी SQL-क्वेरी को कर्मचारियों के नाम पुनः प्राप्त करने होंगे (ताकि आप उन्हें लूप में उपयोग कर सकें