gpt4 book ai didi

php - Mysql数据将在表列中显示 "Array"

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


我想问一下我的 php 编码..
我正在做一些数组编码,但是当我提交数据时,在我的数据库中将在“描述”和“数量”列中显示一个数组。
我用的是mysql..下面是我的数组编码..

$item = array(
'item_description' => '',
'price' => '',
'qty' => '',
'amount' => '',
);
foreach ($item as $key => $value){
$item_description = $_POST['item_description'][$key];
$price = $_POST['price'][$key];
$qty = $_POST['qty'][$key];
$amount = $_POST['amount'][$key];}
}

这是我的插入查询。

$sql1="INSERT INTO payment_item (payment_id, payment_item_id, item_description, price, qty, amount)
VALUES
('$last_insert_payment_id','NULL','$_POST[item_description]','$_POST[price]','$_POST[qty]','$_POST[amount]')";

这是我的表格:

<form>
<h1>Payment Item</h1>
Payment ID :<input id="payment_id" name="payment_id" type="text"><br>
<input type="button" value="Add Row" onClick="addRow('tableID')"/>
<input type="button" value="Delete Row" onClick="deleteRow('tableID')"/>
<table class="table" bgcolor="#CCCCCC">
<thead>
<tr>
<td></td>
<td><center>Item Description</center></td>
<td><center>Price (RM)</center></td>
<td><center>Month</center></td>
<td><center>Amount (RM)</center></td>
</tr>
</thead>
<tbody id="tableID">
<tr>
<td><input type="checkbox" name="chk"></td>
<td>
<select name="item_description">
<option value="deposit">Deposit</option>
<option value="rental">Rental</option>
<option value="stamp">Stamp Duty</option>
<option value="process">Process Fee</option>
<option value="ap">AP</option>
</select>
</td>
<td><input id="price" name="price" type="text"></td>
<td><input id="month" name="qty" type="text"></td>
<td><input id="amount" name="amount" type="text"></td>
</tr>
</tbody>
</table>
<input name="submit" type="submit" value="Submit">
<input name="reset" type="reset" value="Reset">
</form>

我很抱歉我的英语不好..
但我真的需要有人为此提供帮助..
谢谢..

最佳答案

当 PHP 尝试将数组转换为字符串时,会出现“Array”一词。
因此,对于显示为 Array 的字段,您必须以某种方式处理它,具体取决于您的应用程序逻辑,将您拥有的任何数组转换为正确的字符串。

这个问题与mysql无关。

还请记住,您必须格式化 SQL 字符串。至少做到

$var = mysql_real_escape_string($var);

对于要放入查询中的每个变量,并将其在查询中用单引号引起来。

关于php - Mysql数据将在表列中显示 "Array",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10476693/

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