Jay2391 Posted January 29, 2007 Share Posted January 29, 2007 okay I have this code ...in where you put the name of a game in the field and post it ....and workswhat i want is to change it from a text field to a drop down option fieldtable: $tablex from colum: $game_namethis is the code right now...print '<h4><form action = "tourney_main.php" method="post"><p>'; print '<style type="text/css"> <!-- .style9 {font-size: 11px; font-family: Verdana;} --> </style> <table width="400" border="0" cellspacing="0" cellpadding="0"><tr> <th width="200" height="12" align="center" valign="middle" nowrap="nowrap" scope="col"> <div align="left" class="style9">Game:</div></th> <td width="200" height="12" align="center" valign="middle" nowrap="nowrap" scope="col"> <div align="left" class="style9"><input type="text" name="game" size"100" value="' . $_POST['game'] . '"/></div></td> </tr> print '<br><input type="submit" name="submit" size"20" value="Create Tournamnet"/><br /></h4>'; my toughts where to put a table query and a while statement but it dosen't seem to work inside a table. Link to comment https://forums.phpfreaks.com/topic/36199-option-menu/ Share on other sites More sharing options...
boo_lolly Posted January 29, 2007 Share Posted January 29, 2007 90 posts and you STILL can't figure out how to put [code]code in between[/code] the code tags??? Link to comment https://forums.phpfreaks.com/topic/36199-option-menu/#findComment-171963 Share on other sites More sharing options...
rantsh Posted January 29, 2007 Share Posted January 29, 2007 You can save the games in an array and then construct the dropdown with something like [code]<select><? foreach($array as $opt) echo "<option>$opt</opt>?></select>[/code] Link to comment https://forums.phpfreaks.com/topic/36199-option-menu/#findComment-171967 Share on other sites More sharing options...
Jay2391 Posted January 29, 2007 Author Share Posted January 29, 2007 that work thanks I was puting a variable the straight array work !!! Link to comment https://forums.phpfreaks.com/topic/36199-option-menu/#findComment-171990 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.