Re: Re: Generating readio buttons

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Sun, 3 Nov 2002, David Jackson wrote:

> OK, this works but there has to be a pretty way?
>
> David

<html>
<head><title>Operation Sticky Bun</title></head
<body>
<h3 align="center">Operation Sticky Bun </h3>
<?php

require('connect.php');

print '<form action="hello.php" method="post">';
$header = mysql_query ("SELECT * FROM chart ORDER BY acct");
if (mysql_num_rows($header)>0) {
    while ($row = mysql_fetch_array($header)) {
        print "<input type='radio' name='ledger_acct' value='{$row['acct']}'>{$row['descript']}<br>";
    }
} else print "Sorry, no records were found!";

print '</form>';
?>
</body>
</html>

That looks prettier to me.

Peter
---------------------------------------------------------------------------
Peter Beckman            Systems Engineer, Fairfax Cable Access Corporation
beckman@purplecow.com                             http://www.purplecow.com/
---------------------------------------------------------------------------


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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux