In this topic i am going to show you how to fetch data and show in a radio button.
Here we using two file for fetch data.
<?php
$servername='localhost';
$username='root';
$password='';
$dbname = "crud";
$conn=mysqli_connect($servername,$username,$password,"$dbname");
if(!$conn){
die('Could not Connect My Sql:' .mysql_error());
}
?>
<!DOCTYPE html>
<html>
<head>
<title> Retrive data</title>
</head>
<body>
<h2>City Name</h2>
<?php
$i=0;
while($db_row = mysqli_fetch_array($result)) {
?>
<input type="radio" ><?php echo $db_row["city_name"]; ?><br>
<?php
$i++;
}
?>
</body>
</html>
Fetch data show in radio button