我的userajax.php代码
<?php
$username = $_POST['username'];
include('config.php');
    include('db.php');
    $db    = new db();
    $db->connect($db_config);
$sql = 'select id,true_name from users where user_type = 1 and true_name like "%'.$username.'%"';
//echo $sql;exit();
$rs = mysql_query($sql);
$html = '<select name="user_id" style="width:100px;padding:5px;">';
$html .= '<option value="0">请选择客户</option>'; 
while (@$row=mysql_fetch_array($rs)) {
$html .= "<option value=".$row['id'].">".$row['true_name']."</option>";
}
$html .= '</select>';
echo $html;
?>