このコードの結果を取得する方法を教えてくれる人が必要です。リンクを短縮するスクリプトを作成します... sql に値を挿入できます。しかし、私はその結果を表示しようとしましたが、うまくいきませんでした>>>
ここにコード:
// Split the string into pieces
$pieces = explode("\n", str_replace(array("\n", "\r\n"), "\n", trim($linkfield)));
// Build the top of the INSERT query
$sql = "INSERT INTO `url`(`url`) VALUES\n";
// Build the rest of the ;INSERT query by re-assembling the
// pieces.
$sql .= "('";
$sql .= implode("'), ('", $pieces);
$sql .= "')";
mysql_query($sql) or die ('Error: ' . mysql_error());
コンテンツをデータベースに追加しますが、結果を表示する場合:
foreach($pieces as $d)
{
echo "$d/$ln<br />" ;
}
それはデータベースからリンクを取得することでうまくいきます...リンクは次のように表示されます:
http://www.sampledomain.com/samplepost1/
http://www.sampledomain.com/samplepost2/
私はこれを試しました:
$links = mysql_insert_id();
しかし、同じID(1つのID)を提供し続ける必要があるのは、リンクのID(各IDとそのリンク)を表示することです
ありがとう