x_ash Posted October 6, 2004 Share Posted October 6, 2004 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.. Quote Link to comment https://forums.phpfreaks.com/topic/1982-echo/ Share on other sites More sharing options...
TeraKB Posted October 12, 2004 Share Posted October 12, 2004 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! Quote Link to comment https://forums.phpfreaks.com/topic/1982-echo/#findComment-6531 Share on other sites More sharing options...
x_ash Posted October 14, 2004 Author Share Posted October 14, 2004 thanks a lot Quote Link to comment https://forums.phpfreaks.com/topic/1982-echo/#findComment-6540 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.