tristanlee85 Posted April 14, 2006 Share Posted April 14, 2006 To start, I'm going to post the code of my issue.[code]//Used for the employee menu and evaluations left to be completed$employee_list="SELECT * FROM employees";$total_employees=mysql_query($employee_list);$employees_left=mysql_numrows($total_employees);$eval_remaining=($employees_left - $eval_complete);//Evaluates a variable for 'state' == 1$state = mysql_query('SELECT state FROM employees');$state_menu=mysql_result($state,"state");if ($employees_left==0){ echo "<option>--No employees in database--</option>";}else{$count=0;while ($count < $employees_left && $state_menu == '1') {$name_menu=mysql_result($total_employees,$count,"name");echo "<option>$name_menu</option>";$count++;}}[/code]Basically, my main focus is on this:[code=php:0]while ($count < $employees_left && $state_menu == '1')[/code]What I'm wanting it to do is only run through the while() loop while $count < $employees_left and as long as the $state of the employee is "1". For example, I have the following in my table:[code]Name | State------------------Tristan | 1Ben | 0Aaron | 1[/code]In this case, I would only want it to echo out [code]<option>Tristan</option>[/code] and [code]<option>Aaron</option>[/code] and not echo out [code]<option>Ben</option>[/code] since Ben's state is "0".I'm sure you guys can think of something to make this simple and make it work. I've been up too long. Thanks in advance. Quote Link to comment Share on other sites More sharing options...
Barand Posted April 14, 2006 Share Posted April 14, 2006 Try[code]$employee_list="SELECT name FROM employees WHERE state = 1";$result = mysql_query($employee_list);while ($row = mysql_fetch_row($result)) { echo "<option> $row[0] </option>";}[/code] Quote Link to comment Share on other sites More sharing options...
tristanlee85 Posted April 14, 2006 Author Share Posted April 14, 2006 Oh wow. Perfect! Thanks for the help. I was trying to use if() statements and everything else. Thank you so much. Sometimes the simpliest things get you. Quote Link to comment 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.