gpt4 book ai didi

php - 通过php从textarea字段的每一行插入数据库

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

我如何从textarea字段插入数据库,每一行都是数据库中的一个表

意味着我想通过 php 从文本区域字段的每一行插入数据库

我的信息是这样的:

Name | FullName | Age

和数据库表:

id (auto insert),
name,
fullname,
age

谢谢

最佳答案

我建议在行尾使用定界符,然后使用 explode() 将其转换为数组,这是您可以执行的操作。

//Make sure your text have (,) comma at the end of every line
$text = 'My Name,
My Full Name,
24';
//Convert it into an array
$text = explode(',', $text);
//fetch the value and assign it to variables then do an insert operation
//Use mysql_real_escape_string() to escape SQL injections.
$name = mysql_real_escape_string($text[0]);
$FullName = mysql_real_escape_string($text[1]);
$age = mysql_real_escape_string($text[2]);

然后您可以像这样创建查询。

$query = "INSERT INTO persons(name, fullName, age) values($name, $fullName, $age)";
$result = mysql_query($query);

关于php - 通过php从textarea字段的每一行插入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6241739/

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