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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.