since many do not know the term sticky = when a form is submitted, the data contained is not deleted but instead last checked data will be shown.
I have some dynamically generated checkboxes from the database. I tried the below code to make them sticky but they are simply preselected in stead of becoming sticky. What am I doing wrong?
<?php
$sql2 = "SELECT relation FROM table_rel_info";
$result2 = @mysqli_query($dbc, $sql2);
while($row2 = mysqli_fetch_array($result2, MYSQLI_ASSOC)) {
echo "<label>" . $row2['relation'] . "</label>";
echo "<input class='box' type='checkbox' value=1";
?> <?php if (isset($row2['relation'])) { echo 'checked="checked"';}?>
<?php
echo "'/>" . "<br />";
} ?>