0
$statement = oci_parse($connection, "select * from customer where username = ':username'");
oci_bind_by_name($statement, ':username', $username);
我想比較用戶輸入和數據庫。我認爲報表中的報價存在問題。使用oci_bind_by_name在Oracle數據庫中搜索字符串
現在,它的作品!謝謝 – gogogod