Jump to content

[SOLVED] populate checkbox from mysql


brem13

Recommended Posts

i have a page where i am displaying text in textboxes from a mysql database and i also want to populate the checkboxes if there is a field in the database that reads 'Yes', and i cant figure out how to check the checkbox if featured = Yes?? any suggestions please??

 

$feat = $qry['featured'];

if($feat == "Yes")

$value= "checked";

else

$value = "";

 

    echo '<input type=hidden name=pic['.$counter.'] value='.$pic.'><input type=text name=comment['.$counter.'] value="'.$qry['comment'].'">Featured:<input type=checkbox name=featured['.$counter.'] value='.$value.'></td>';

Link to comment
Share on other sites

//Shorthand if/else to set the value of $checked to
// checked="checked" or empty string
$checked = ($feat == "Yes") ? ' checked="checked"' : '';

echo "<input type=\"hidden\" name=\"pic[{$counter}]\" value=\"{$pic}\" />
      <input type=\"text\" name=\"comment[{$counter}]\" value="{$qry['comment']}\" />
      Featured:<input type=\"checkbox\" name=\"featured[{$counter}]\" value=\"Yes\"$checked /></td>"; 

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.