So I've got a dropdown that has a list of customers that you can select from.  It uses a function (that someone else built) which works fine when there are 2 or more customers but dies when there it only one.  When there's one customer, each item in the dropdown is the first character of each column for that one customer.
Here is the function:
function getCustomerBy($column = "",$value = "")
        {
            global $conn;
            if ($value == '')
                {
            return(null);
                }
            $sel = "SELECT 
            customers.*,
            customerStatus.code customerStatus
            FROM customers,
            customerStatus      
            WHERE customer_id
            and  customerStatus.id = customers.customerStatus_id and   ". mysqli_real_escape_string($conn,$column) ."='". mysqli_real_escape_string($conn,$value) ."'";
            //      error_log($sel);
            $run = mysqli_query($conn, $sel);
            $check = mysqli_num_rows($run);
            if ($check ==1)
            {
                    $row = mysqli_fetch_assoc($run);
                    return($row);
            }
            elseif($check >1)
            {
                    $rows = array();
                    while ($row = mysqli_fetch_assoc($run))
            {
                    $rows[] = $row;
            }
                    return($rows);
            }
            else
            {
                    return(null);
            }
    }
I'm fairly certain that it's the ($check == 1) stuff but I can't work out the best way to re-do all of that to make it work without causing other errors (specifically "cannot modify header")
This is what's called up on the page with the dropdown:
 $customers = getCustomerBy('users_user_id',$user['user_id']); 
Also, here is the code for the dropdown:
 <?
      foreach ($customers as $customer)
      {
      $selected = '';
      if (isset($gig['customers_customer_id']) && $customer['customer_id'] == $gig['customers_customer_id'])
 {
      $selected = ' selected ';
 }
 echo "\t<option value=\"".$customer['customer_id']."\"      $selected>".$customer['customer_company_name']."</option>";
 }
 ?>

 
     
    