MYSQL表结构
Name Type Collation Attributes Null Default
code varchar(2) utf8_unicode_ci No
name varchar(255) utf8_unicode_ci No
checkbox tinyint(1) Yes NULL
PHP
$countryiso = mysql_query("SELECT distinct name as name FROM location_country where code NOT IN('A1','A2','AP','EU') order by name");
echo '<table>';
echo '<th>Country</th><th> Add/Remove </th>';
while ($row = mysql_fetch_assoc($countryiso)) {
echo '<tr>';
echo '<td>'. $row['name'] . '</td>';
echo '<td><input type="checkbox"></td>';
echo '</tr>';
}
echo '</table>';
当我检查 php 后端中的复选框时,我需要将列复选框中的值从 0 更新为 1。我如何仅使用 php 和 mysql 执行此操作?请不要Jquery。