【发布时间】:2015-12-29 14:01:10
【问题描述】:
$statement = oci_parse($connection, "select * from customer where username = ':username'");
oci_bind_by_name($statement, ':username', $username);
我想将用户输入与数据库进行比较。我认为语句中的引号有问题。
【问题讨论】:
标签: php sql oracle oracle-call-interface