gpt4 book ai didi

php - 如何将php变量插入到oracle表中?

转载 作者:搜寻专家 更新时间:2023-10-30 22:11:23 24 4
gpt4 key购买 nike

我有一些 php 变量想插入到 oracle 表中,但我很难使用转义引号。

这是我目前所拥有的:

   <?php
......
$number_passed=20;//this is calculated earlier in the code
$number_total=100;//also calculated earlier in the code
$date=date('m/d/y');
$username=//username here
$password=//password here
$database=//database connection string here

$connection=oci_connect($username,$password,$database);

$sql="INSERT INTO TEST_TABLE (Date_Col,num_pass,num_total)
VALUES ('"$date"','"$number_passed"','"$number_total"')";

$st= oci_parse($$connection, $sql);
oci_execute($st);

?>

当我这样做时,出现以下错误:解析错误:语法错误,意外的 T_VARIABLE在我声明我的 sql 语句的那一行。如何正确地将 php 变量插入到数据库表中?

此外,我知道我应该在将 php 变量插入数据库之前清理它们。有没有适合我的功能?

谢谢!

最佳答案

简单的字符串连接问题。

  VALUES ('${date}','${number_passed}','${number_total}')";

甚至不需要逃避解释器。

关于php - 如何将php变量插入到oracle表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27539355/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com