Jump to content

Lanfeardk

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Everything posted by Lanfeardk

  1. I tried this put it made my page layout weird out: <?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 type='checkbox' class='box' name='relationbox' id='reationbox' value="; ?> <?php if (isset($row2['relation'])) { if($row2['relation'] == $_POST[$row['Field']] ) { echo 'checked="checked"'; } else { /*do nothing */ } }?> <?php echo "'/>" . "<br />"; } ?>
  2. 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 />"; } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.