ssailer Posted June 18, 2010 Share Posted June 18, 2010 I am trying to create a simple radio group based on the content of a MySQL table and it's not working. Can anyone help? <form action="" method="POST" name="form1" id="form1"> <?php do { ?> <input name="fruitID" type="radio" value="<?php echo $row_getFruit['fruitID']; ?>" /> <?php echo $row_getFruit['fruitName']; ?><br /> <?php } while ($row_getFruit = mysql_fetch_assoc($getFruit)); ?> </form> Quote Link to comment https://forums.phpfreaks.com/topic/205192-create-radio-group-from-mysql-table/ Share on other sites More sharing options...
Pikachu2000 Posted June 18, 2010 Share Posted June 18, 2010 Exactly how is it "not working"? Quote Link to comment https://forums.phpfreaks.com/topic/205192-create-radio-group-from-mysql-table/#findComment-1074035 Share on other sites More sharing options...
kenrbnsn Posted June 18, 2010 Share Posted June 18, 2010 Use a "while" loop, instead of a "do while" loop: <form action="" method="POST" name="form1" id="form1"> <?php while ($row_getFruit = mysql_fetch_assoc($getFruit)) { echo '<input name="fruitID" type="radio" value="' . $row_getFruit['fruitID'] . '" />'; echo $row_getFruit['fruitName'] . "<br />\n"; } ?> </form> Ken Quote Link to comment https://forums.phpfreaks.com/topic/205192-create-radio-group-from-mysql-table/#findComment-1074037 Share on other sites More sharing options...
ssailer Posted June 18, 2010 Author Share Posted June 18, 2010 Ken - nothing is showing up on the page. Nothing at all. It's blank. Pikachu - with my code, only one radio button is showing up on the page and no title. Quote Link to comment https://forums.phpfreaks.com/topic/205192-create-radio-group-from-mysql-table/#findComment-1074041 Share on other sites More sharing options...
ssailer Posted June 18, 2010 Author Share Posted June 18, 2010 Okay - I found some code that I have been able to get working, but where do I add the form tags within this code? I'm fairly new to PHP and it's not all making sense to me yet. Plus, there will probably be TONS of other form fields, not all of them dynamic, and I'm completely lost as to where to put them... <?php $query = "SELECT * FROM fruit ORDER BY fruitName ASC"; $result = mysql_query($query) or die('Error : ' . mysql_error()); $sid = (isset($_POST['role']) ? $_POST['role'] : ''); while($row = mysql_fetch_assoc($result)) { echo '<input type="radio" name="fruitID" value="' . $row['fruitid'] . '"' . ($sid == $row['fruitid']) . '>' . $row['fruitName'] . "<br>\n"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/205192-create-radio-group-from-mysql-table/#findComment-1074042 Share on other sites More sharing options...
joePHP Posted June 18, 2010 Share Posted June 18, 2010 Hi, What are you using $sid for? Thanks, Joe Quote Link to comment https://forums.phpfreaks.com/topic/205192-create-radio-group-from-mysql-table/#findComment-1074052 Share on other sites More sharing options...
ssailer Posted June 18, 2010 Author Share Posted June 18, 2010 I got it working <form action="sresults.php" method="post" name="sform" id="sform"> <div align="center"> <?php do { ?> <input name="fruitID" type="radio" value="<?php echo $row_getFruit['fruitID']?>" /> <?php echo $row_getFruit['fruitName']; ?><br /> <?php } while ($row_getFruit = mysql_fetch_assoc($getFruit)); $rows = mysql_num_rows($getFruit); if($rows > 0) { mysql_data_seek($getFruit, 0); $row_getFruit = mysql_fetch_assoc($getFruit); } ?> <input name="submit" type="submit" value="submit" /> </div> </form> Quote Link to comment https://forums.phpfreaks.com/topic/205192-create-radio-group-from-mysql-table/#findComment-1074090 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.