- $sql = "select u.id, u.name from tt_user_project_binds upb
- inner join tt_client_project_binds cpb on (upb.project_id = cpb.project_id and cpb.client_id = $user->client_id)
- inner join tt_users u on (u.id = upb.user_id)
- where (u.status = 1 or u.status = 0)
- group by u.id
- order by upper(u.name)";
+ $sql = "select u.id, u.name from tt_user_project_binds upb".
+ " inner join tt_client_project_binds cpb on (upb.project_id = cpb.project_id and cpb.client_id = $user->client_id)".
+ " inner join tt_users u on (u.id = upb.user_id)".
+ " where (u.status = 1 or u.status = 0)".
+ " group by u.id".
+ " order by upper(u.name)";