How do I go about building radio buttons using the results of a MySQL query. The record layout looks like this:

acct
cat
description

I want to use acct as the value="acct" in the input statement for the radio box. The code below almost works?

TIA,
David


<?php
$header = mysql_query ("SELECT * FROM chart
ORDER BY acct ");

if ($row = mysql_fetch_array($header)) {
do {
print("<tr bgcolor=\"white\" >");
print '<td width="5"><input type="radio" name="gl_acct" value=acct[]"></td>';
print("<td width=\"12\">");
print $row["acct"];
print "</td><td width=\"12\">";
print $row["cat"];
print "</td><td >";
print $row["descript"];
print("</td></tr>\n");
} while($row = mysql_fetch_array($header));

} else {print "Sorry, no records were found!";}


?>


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to