Jump to content

"echo"


Recommended Posts

hope you can help me with my prob....

 

how can i "echo" the check boxes if they are on a table form.

because im trying to do it on a usual way ie: echo every value to the table

how can i echo those checked boxes that are only enabled.. :(

Link to comment
Share on other sites

hope this helps

imagine you have a mysql query (lets imagine you are selecting the row where ID is 19, from the table "table", and it has the value YES, in field2, where YES or NO indicates if it is checked or not.

 

$query = mysql_query("SELECT * FROM table WHERE id=". $_GET['id']);

$checkbox_output = mysql_result($query, 0, 'field2');
if ($checkbox_output=='YES')
{
$checkbox=' checked';
}
elseif ($checkbox_output=='NO')
{
$checkbox='';
}

 

then, your html code should go like this:

<input name="checkbox" type="checkbox" value="checkbox"<? echo $checkbox; ?>>

 

hope this helps!

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.