duanjiashai9140 2016-06-08 20:03 采纳率: 0%
浏览 126
已采纳

MySQL从textarea插入到多行

I have a simple form which is a textarea and I need to insert each lines in my textarea into a different rows in MySQL.

HTML code:

<html>
<form method="POST" action="insert.php">
<textarea name="url" rows="10" ></textarea>
<input type="submit" name="submit" value="Enter">
</form>
</html>

PHP Code:

<?php
$link = mysql_connect('localhost', 'root', '');
if (!$link) {
      die('Not connected : ' . mysql_error());
}
$db_selected = mysql_select_db('insert', $link);
if (!$db_selected) {
     die ('Can\'t use this database : ' . mysql_error());
}
$textarea = mysql_real_escape_string($_POST['url']);
$array = explode("
", $textarea);
$i=0;
$value = trim($array[$i]);
if (!empty($value)) {
     foreach ($array as $value) {
          mysql_query("INSERT INTO test (text) VALUES ('{$array[$i]}')") or       die(mysql_error());
          $i++;
     }
}
mysql_close($link);
?>

Currently I'll store textarea in ONE row when I submit my form. Could you please help me with that.

  • 写回答

2条回答 默认 最新

  • dsfb20227 2016-06-08 20:09
    关注

    Try this:

    $text = trim($_POST['textareaname']);
    $textAr = explode("
    ", $text);
    $textAr = array_filter($textAr, 'trim'); // remove any extra  chars
    
    foreach ($textAr as $line) {
        // Your sql Query here with $line as the string.
    } 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化