Jump to content

[SOLVED] Populate form fields from database


siric

Recommended Posts

Hi,

 

I am pulling data from a database to populate a form for editing purposes.  The form includes many radio buttons.

 

Is there a more elegant way to accomplish this than the following -

 

if ($var1 = '1') {
  print "<input type='radio' value='1' checked name='quality'>1<p>;
} else {
  print "<input type='radio' value='1' name='quality'>1<p>;
}

if ($var1 = '2') {
  print "<input type='radio' value='2' checked name='quality'>2<p>;
} else {
  print "<input type='radio' value='2' name='quality'>2<p>;
}
......

 

 

Thanks

 

 

Link to comment
Share on other sites

my bad, try this:

 

<?php
echo '<input type="radio" value="1" name="quality"'.(($var1 == '1') ? ' checked' : '').'" />';
?>

 

i had given you the wrong comparable (= instead of ==) .. try this code now.

 

EDIT: for the record, i rarely test code that i post.

Link to comment
Share on other sites

my bad, try this:

 

<?php
echo '<input type="radio" value="1" name="quality"'.(($var1 == '1') ? ' checked' : '').'" />';
?>

 

i had given you the wrong comparable (= instead of ==) .. try this code now.

 

EDIT: for the record, i rarely test code that i post.

 

That was the problem.  I started from an if statement from scratch and realised just before I saw this post.

 

 

Much Thanks.

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.