userlist.php
上传用户:yantgcom
上传日期:2013-07-19
资源大小:478k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

PHP

  1. <?php
  2. //echo getuserlist('aa',"hong") ;
  3. function getuserlist($fname,$sel)  {
  4.  
  5.  //include ("../inc/db.php");
  6.  //include ("../inc/phpmkrfn.php");
  7. $tempstr="<select name='$fname'>";
  8. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  9.     $sSql ="select * from user ";
  10. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  11. while ($row = mysql_fetch_array($rs, MYSQL_ASSOC)) {
  12. if ($row[UID]==$sel){ $tempstr .= "<option value='$row[UID]' selected='selected' > $row[UNAME] </option>";} 
  13. else{$tempstr .= "<option value='$row[UID]' > $row[UNAME] </option>";};
  14. };
  15. $tempstr .= "</select>";
  16. return  $tempstr;
  17. }
  18. function getusername($uid)  {
  19.  
  20. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  21.     $sSql ="select * from user where UID= '$uid' ";
  22. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  23. $row = mysql_fetch_array($rs, MYSQL_ASSOC);
  24. $tempstr =$row[UNAME];
  25. return  $tempstr;
  26. }
  27. ?>