sql >> データベース >  >> RDS >> Mysql

MySQLはテキストエリアから複数の行に挿入します

    これを試してください:

    $text = trim($_POST['textareaname']);
    $textAr = explode("\n", $text);
    $textAr = array_filter($textAr, 'trim'); // remove any extra \r chars
    
    foreach ($textAr as $line) {
        // Your sql Query here with $line as the string.
    } 
    


    1. C++プログラムをMariaDBに接続する方法

    2. 2つの異なるテーブルに2つのcount(*)結果を合計するにはどうすればよいですか?

    3. RANK()を使用してSQLの行のランキング位置を追加する方法

    4. インド、PHP、MYSQL、JQUERYのSTDコードファインダースクリプト