ODK Aggregate 1.0.4 Production Release is now available for download

ODK Aggregate 1.0.4 Production Release is now available for download.

See http://code.google.com/p/opendatakit/wiki/AggregateReleaseNotes
for futher details.

··· -- Mitch Sundt Software Engineer University of Washington mitchellsundt@gmail.com

hi all,

i have multiple checkboxes, i need to display their values..but i get only
one value displayed with the following code:

$query="select * from follow_up_oral_medicine_location";
$result = mysql_query($query) or die("Error 1" . mysql_error());
$num_rows = mysql_num_rows($result) or die(mysql_error());

while($info=mysql_fetch_array($result))
{
$location=$info['VALUE'];
}

please help