Jump to content

**SOLVED** while() meeting 2 conditions


tristanlee85

Recommended Posts

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 |   1
Ben     |   0
Aaron   |   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.
Link to comment
https://forums.phpfreaks.com/topic/7391-solved-while-meeting-2-conditions/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.