最初に行単位で、次に # 単位で文字列を展開し、mysql に挿入する必要があります。
私は文字列を持っているように
Shahbaz#is my name
Singh#is my caste
スクリプトで最初に新しい行で文字列を分解し、列に挿入Shahbaz
し、mysqlのword
列に挿入し、 and と同じにする必要があります。is my name
note
Singh
is my caste
include("connect.php");
$counter = 0;
$counters = 0;
$string = mysql_real_escape_string($_POST['words']);
$arr = explode(" ", $string);
mysql_query("SET charset utf8");
$sql = mysql_query("SELECT `word` FROM unicode WHERE word IN ('".implode("', '", $arr) . "')") or die (mysql_error());
$dupes = array();
while($r = mysql_fetch_assoc($sql)) {
$dupes[] = $r['word'];
}
$newwords = array_diff($arr, $dupes);
if(count($newwords)) {
$sqli = mysql_query("INSERT INTO unicode (word) VALUES ('" . implode("'),('", $newwords) . "')") or die (mysql_error());
}
このスクリプトでは、各単語を挿入しますが、メモ列は挿入しません。単語をスペースで区切ります。改行で区切り#
、note
列の後にテキストを挿入したい...
前もって感謝します。