bagnallc Posted June 28, 2006 Share Posted June 28, 2006 hi there i am using a mysql query and presenting results in a table. it returns named values and null (which i do want to include). i want to apply a name to the null values in my table - is this possibleso for example now it readsvalue 1 - checkboxvalue2 - checkboxvalue 3 - checkboxblank space (for null values) - checkboxbut i would like to change it so that its value 1 - checkboxvalue2 - checkboxvalue 3 - checkbox"no defined value" - checkboxhere is the code<form name="class_form" action="wizard.php" method="get"><?php //get data for class checkboxes and display them$classqry2=mysql_query("SELECT distinct class.class_id as classid, class.class AS classnameFROM numbersLEFT JOIN class ON numbers.class_id=class.class_idORDER BY classid");while($checkbox=mysql_fetch_array($classqry2)) { echo "<input type='checkbox' name='class[]' value=$checkbox[classid]>" . " " . $checkbox[classname] . "<br/>" ;}?><input type="submit" value="GO!"></form> Link to comment https://forums.phpfreaks.com/topic/13099-naming-null-values-in-a-form/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.