I have an array I populated from an sql database its just a single char
if(customerStatus[$j]==1)
{
echo "<option>-- Design In Progress --</option>";
}
else if(customerStatus[$j]==2)
{
echo "<option>-- Pending Client Approval --</option>";
}
else if(customerStatus[$j]==3)
{
echo "<option>-- Requested Changes in Progress --</option>";
}
else if(customerStatus[$j]==4)
{
echo "<option>-- Finalizing Order --</option>";
}
else if(customerStatus[$j]==5)
{
echo "<option>-- Awaiting Payment --</option>";
}
else if(customerStatus[$j]==6)
{
echo "<option>-- Payment Recieved --</option>";
}
else if(customerStatus[$j]==7)
{
echo "<option>-- Demo Ready For Download --</option>";
}
else if(customerStatus[$j]==8)
{
echo "<option>-- Request Full Product --</option>";
}