sql >> Databasteknik >  >> RDS >> Mysql

MySQL infoga från ett textområde till flera rader

Prova detta:

$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. Sql*plus returnerar alltid utgångskoden 0?

  2. Vad betyder mysql-fel 1025 (HY000):Fel vid byte av namn på './foo' (fel nr:150)?

  3. Hur Hibernate Batch-insättning fungerar?

  4. Infogar NOW() i databasen med CodeIgniters Active Record