Jump to content

Make dynamic checkboxes sticky


Lanfeardk

Recommended Posts

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 />";

} ?>

 

 

Link to comment
Share on other sites

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 />";

} ?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.