时间:2021-07-01 10:21:17 帮助过:25人阅读
使用PDO支持
$sql = "SELECT * FROM DB2ADMIN.USERS where username='$username'"; $result = db2_exec($conn, $sql);if($row = db2_fetch_array($result)) { echo $row[1]; //使用$row["password"] } db2_close($conn); }else { echo "Connection failed.";}
使用 PDO,就可以了,很多都支持。