Zergman Posted November 21, 2008 Share Posted November 21, 2008 Im trying to show a dropdown if records exist, but can't figure out the syntax. Here's the dropdown I want to show. <select name="tracking" class="inputbox" id="tracking"> <?php do { ?> <option value="<?php echo $row_rsmenufield['value']?>"><?php echo $row_rsmenufield['value']?></option> <?php } while ($row_rsmenufield = mysql_fetch_assoc($rsmenufield)); $rows = mysql_num_rows($rsmenufield); if($rows > 0) { mysql_data_seek($rsmenufield, 0); $row_rsmenufield = mysql_fetch_assoc($rsmenufield); } ?> </select> If I do this, get syntax error <?php if ($totalRows_rsmenufield > 0) { <select name="tracking" class="inputbox" id="tracking"> <?php do { ?> <option value="<?php echo $row_rsmenufield['value']?>"><?php echo $row_rsmenufield['value']?></option> <?php } while ($row_rsmenufield = mysql_fetch_assoc($rsmenufield)); $rows = mysql_num_rows($rsmenufield); if($rows > 0) { mysql_data_seek($rsmenufield, 0); $row_rsmenufield = mysql_fetch_assoc($rsmenufield); } ?> </select> } if ($totalRows_rsmenufield < 0) { Nothing currently being tracked } ?> Help! lol ??? Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/ Share on other sites More sharing options...
revraz Posted November 21, 2008 Share Posted November 21, 2008 Post the error Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695832 Share on other sites More sharing options...
Zergman Posted November 21, 2008 Author Share Posted November 21, 2008 Parse error: syntax error, unexpected '<' in /var/www/mysite.com/callDetail.php on line 432 Line 432 is <select name="tracking" class="inputbox" id="tracking"> Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695841 Share on other sites More sharing options...
revraz Posted November 21, 2008 Share Posted November 21, 2008 and 432 is? Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695847 Share on other sites More sharing options...
Zergman Posted November 21, 2008 Author Share Posted November 21, 2008 Sorry, edited it as quickly as I could after posting error Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695850 Share on other sites More sharing options...
revraz Posted November 21, 2008 Share Posted November 21, 2008 You need to echo that line or get out of PHP. Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695853 Share on other sites More sharing options...
Zergman Posted November 21, 2008 Author Share Posted November 21, 2008 Thanks revraz, but not sure what you mean to echo the select ... damn my noobish skills Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695854 Share on other sites More sharing options...
revraz Posted November 21, 2008 Share Posted November 21, 2008 You seem to have a few things wrong <?php if ($totalRows_rsmenufield > 0) { <select name="tracking" class="inputbox" id="tracking"> <?php //you start php but you didn't close it do { ?> <option value="<?php echo $row_rsmenufield['value']?>"><?php echo $row_rsmenufield['value']?></option> <?php } while ($row_rsmenufield = mysql_fetch_assoc($rsmenufield)); //missing { } for while loop $rows = mysql_num_rows($rsmenufield); if($rows > 0) { mysql_data_seek($rsmenufield, 0); $row_rsmenufield = mysql_fetch_assoc($rsmenufield); } ?> </select> } if ($totalRows_rsmenufield < 0) { Nothing currently being tracked } ?> Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695862 Share on other sites More sharing options...
Zergman Posted November 21, 2008 Author Share Posted November 21, 2008 Thanks for the pointers revraz. I've double checked my php tags and stuff but from what I can see, they seem to be good ... apparently not, but can't seem to locate my error right now. Been at this for about 19hrs straight so my eyes and brain are done lol. I'll go over it again once I got my marbles straight. Thanks again for the help. Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695871 Share on other sites More sharing options...
revraz Posted November 21, 2008 Share Posted November 21, 2008 Here is the right syntax for your code, but you still have logic/coding issues. You may be missing a closing } because I can't follow your code or what you are trying to do. <?php if ($totalRows_rsmenufield > 0) { echo '<select name="tracking" class="inputbox" id="tracking">'; do { ?> <option value="<?php echo $row_rsmenufield['value']?>"><?php echo $row_rsmenufield['value']?></option> <?php } while ($row_rsmenufield = mysql_fetch_assoc($rsmenufield)); //don't know what you are trying to do here $rows = mysql_num_rows($rsmenufield); if($rows > 0) { mysql_data_seek($rsmenufield, 0); $row_rsmenufield = mysql_fetch_assoc($rsmenufield); } echo "</select>"; } if ($totalRows_rsmenufield < 0) { echo "Nothing currently being tracked"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695878 Share on other sites More sharing options...
Zergman Posted November 21, 2008 Author Share Posted November 21, 2008 I have more than logic /coding issues LOL. Found one error thanks to your help, missing a <php } ?> on the end. Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695882 Share on other sites More sharing options...
revraz Posted November 21, 2008 Share Posted November 21, 2008 Here is a simple way to add options to a pulldown, this is from my site that I use to grab boat names to populate a list. <select name="bid"> <?php $getboats = "SELECT * FROM boats WHERE bstatus = 1"; $getresult = mysql_query($getboats) or die (mysql_error()); if (mysql_num_rows($getresult) > 0) { while ($boatlist= mysql_fetch_assoc($getresult)){ echo "<option value={$boatlist['bid']}>{$boatlist['bname']}</option>"; } } else { echo "<a href='boatadmin.php'>No Boats found, check status</a>"; exit; } ?> </select> Quote Link to comment https://forums.phpfreaks.com/topic/133712-syntax-help/#findComment-695898 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.