nisroc Posted August 22, 2006 Share Posted August 22, 2006 Im trying to get a field to display on the same page by using a mysql table and a form a drop down menu / submit button. The drop down menu is populated with the names fields within the table. When I hit the submit button I want the dynamic data returned for that specific name. I am not sure how to get the forum to react this way. Any help please im very lost here[code]<form id="appview" name="appview" method="post" action="get"> <select name="select"> <?phpdo { ?> <option value="<?php echo $row_appview['gamename']?>"><?php echo $row_appview['gamename']?></option> <?php} while ($row_appview = mysql_fetch_assoc($appview)); $rows = mysql_num_rows($appview); if($rows > 0) { mysql_data_seek($appview, 0); $row_appview = mysql_fetch_assoc($appview); }?> </select> <input type="submit" name="Submit" value="Submit" /></form>[/code] Link to comment https://forums.phpfreaks.com/topic/18262-getting-data-uning-a-form/ Share on other sites More sharing options...
ronverdonk Posted August 22, 2006 Share Posted August 22, 2006 Let me get this correct. Pass 1. You want a user to click on an item from a select-box that is populated from the database (with $row_appview['gamename').Pass 2. After submit you want to display some other items (depending on the selected gamename) from the database to the user.Does that sum up your problem? Link to comment https://forums.phpfreaks.com/topic/18262-getting-data-uning-a-form/#findComment-78509 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.