gpt4 book ai didi

php - 将php数组插入mysql

转载 作者:行者123 更新时间:2023-11-29 19:11:53 25 4
gpt4 key购买 nike

我一直在寻找解决方案,但没有运气。我正在尝试将结果从数组加载到 mysql 表中。

我所知道的- 我已成功连接到 table - 当我运行附加的代码时,它返回数组中的项目数“未添加”。

foreach ( $lender as $value ) {

$firm = trim( $value[ 0 ] );
$variable = trim( $value[ 1 ] );
$six_moths = trim( $value[ 2 ] );
$one_year = trim( $value[ 3 ] );
$two_year = trim( $value[ 4 ] );
$three_year = trim( $value[ 5 ] );
$four_year = trim( $value[ 6 ] );
$five_year = trim( $value[ 7 ] );

$today = date( "Y-m-d" );


echo "<br>";

//Create INSERT query
$qry = "INSERT INTO current_rates(financial_instution, variable, six_months, one_year, two_year, three_year, four_year, five_year, today) VALUES('$firm', '$variable', '$six_month' , '$one_year', '$two_year', '$three_year', '$four_year', '$five_year', '$today')";
$result = @mysql_query( $qry );

//Check whether the query was successful or not
if ( $result ) {
echo( "Added Success" );
} else {
echo( "Not Added" );

}

}

最佳答案

也许你应该像下面这样尝试一下..你检查过数据库吗?您有连接吗?是否有一个名为 current_rates 的表?

 $result = mysql_query($qry, $conn);

让我知道它是否有效:)

关于php - 将php数组插入mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43019174/

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