userlist.php
资源名称:minierp.rar [点击查看]
上传用户:yantgcom
上传日期:2013-07-19
资源大小:478k
文件大小:1k
源码类别:
MySQL数据库
开发平台:
PHP
- <?php
- //echo getuserlist('aa',"hong") ;
- function getuserlist($fname,$sel) {
- //include ("../inc/db.php");
- //include ("../inc/phpmkrfn.php");
- $tempstr="<select name='$fname'>";
- $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
- $sSql ="select * from user ";
- $rs = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
- while ($row = mysql_fetch_array($rs, MYSQL_ASSOC)) {
- if ($row[UID]==$sel){ $tempstr .= "<option value='$row[UID]' selected='selected' > $row[UNAME] </option>";}
- else{$tempstr .= "<option value='$row[UID]' > $row[UNAME] </option>";};
- };
- $tempstr .= "</select>";
- return $tempstr;
- }
- function getusername($uid) {
- $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
- $sSql ="select * from user where UID= '$uid' ";
- $rs = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
- $row = mysql_fetch_array($rs, MYSQL_ASSOC);
- $tempstr =$row[UNAME];
- return $tempstr;
- }
- ?>