通过php从textarea字段的每一行插入数据库
我如何从textarea字段插入数据库,每一行都是数据库中的一个表,
这意味着我想通过php从textarea字段的每一行插入数据库,
我的信息如下:
Name | FullName | Age
和数据库表:
id (auto insert),
name,
fullname,
age
谢谢
How i can insert in database from textarea field that each line is a table in database
means I want insert in database from each line of textarea field by php
my information like this:
Name | FullName | Age
and database table:
id (auto insert),
name,
fullname,
age
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我建议在行尾使用分隔符,然后使用explode() 将其转换为数组,这就是您可以执行的操作。
然后你可以像这样创建查询。
i would suggest using a delimiter at the end of the line and then convert it into an array using explode(), here is what you could do.
and then you can create query like this.
希望这有帮助:
Hope this helps:
分割字符串,例如 http://php.net/manual/en/function.explode .php
Split the string, for example http://php.net/manual/en/function.explode.php