# I am making a online exam system and I want to add radio button in the options section, but when I add, it's showing error. How do I add radio button to options section#
2017-12-17 23:51:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Question Show</title>
</head>
<body>
<?php
// database
$con = mysqli_connect('localhost','root','');
mysqli_select_db($con, 'Question');
// results per page
$results_per_page = 1;
// find out the number of results stored in database
$sql='SELECT * FROM tableoption';
$result = mysqli_query($con, $sql);
$number_of_results = mysqli_num_rows($result);
// determine number of total pages available
$number_of_pages = ceil($number_of_results/$results_per_page);
// determine which page number visitor is currently on
if (!isset($_GET['page'])) {
$page = 1;
} else {
$page = $_GET['page'];
}
// determine the sql LIMIT starting number for the results on the displaying page
$this_page_first_result = ($page-1)*$results_per_page;
// retrieve selected results from database and display them on page
$sql='SELECT * FROM tableoption LIMIT ' . $this_page_first_result . ',' . $results_per_page;
$result = mysqli_query($con, $sql);
while($row = mysqli_fetch_array($result)) {
echo $row['id'] . ' ' . $row['tableoption']. '<br>';
echo $row['opt1']. '<br>';
echo $row['opt2']. '<br>';
echo $row['opt3']. '<br>';
echo $row['opt4']. '<br>';
}
// display the links to the pages
for ($page=1;$page<=$number_of_pages;$page++) {
echo '<a href="index.php?page=' . $page . '">' . $page . '</a> ';
}
?>
</body>
</html>
答案 0 :(得分:0)
This
$.getJSON('Dashboard/CompaniesWithId', function (data) {
$.each(data, function (i, item) {
sellers[i] = item.Name;
sellersID[i] = item.Id;
});
}).error(function () {
console.log("error loading seller to the autocomplete");
});
$("#searchSeller").autocomplete({
messages: {
noResults: 'No sellers with this name',
},
minLength: 2,
delay: 500,
source: sellers,
});
Should be this
<td><input type="radio" value="<?php echo $row['opt1']. ?>'<br>';/></td>
答案 1 :(得分:0)
您忘记关闭输入的值属性。
<input type="radio" value="<?php echo $row['opt1']; ?>"/>