Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、テキストからデータベースにデータを挿入したいのですが、テキストのすべての行がデータベースの新しい行を占める必要があります。例えば
ナンバーワン ナンバーツー ナンバースリー
これはテキスト領域のコンテンツであり、テーブルの 3 つの異なる行に挿入する必要があります。
PHP を使用explode()して、各改行でテキストエリアのコンテンツを分割します。次のようなものです:
explode()
$lines = explode("\n", $textarea_content);
$linesは配列になります。
$lines