I need to retrieve the hobbies name from mysql and display it in check boxes. I done the below given code. But it displays just check box and not any hobby names. P
mysql
You need to add simple text $hobby next to every checkbox.
$hobby
Corrected code:
$query = "SELECT * FROM hobbies"; $result = mysqli_query($con, "$query"); while ($r=mysqli_fetch_array($result)) { $hobby=$r["hobby_name"]; ?>