-1

配列に次のデータがあります。各配列インデックスの内容を mysql テーブル myforum に保存したいと考えています。

    Array ( 
            [0] => zero, those players that are trialing for hib team, (hpb's) most of them are like 300 -400 pingers? umm..mager lagg and even worse when they play on uk server's i bet/ 
            [1] => 1998-04-25T213200Z 
            [2] => http//boards.ie/vbulletin/showpost.php?p=67075 
          ) 

mysql テーブルの列は次のとおりです: コンテンツ、日付、投稿

[0] index value should store in content column,
[1] should store in date column and
[2] should store in post column
4

2 に答える 2

1

あなたが残した値をエスケープすることを除いて、コードに問題は見つかりませんでした。これが原因で、データをテーブルに挿入できない可能性があります。以下のコードを試すことができます。

$con = mysql_connect("localhost","sufi","1234"); 
 if (!$con) 
     { 
     die('Could not connect: ' . mysql_error()); 

     } 
 mysql_select_db("test", $con); 
 $xml = simplexml_load_file("boards.xml"); 
 $products[0] = (string)current($xml->xpath("/sioctBoardPost/sioccontent")); 
 $products[1] = (string)current($xml->xpath("/sioctBoardPost/dctermscreated")); 
 extract($products); 
 mysql_query("INSERT INTO forum (txt_content,txt_date,txt_about) 
 VALUES ('".mysql_escape_string($products[0])."','".mysql_escape_string($products[1])."','".mysql_escape_string($products[2])."')"); ?> 
于 2013-01-17T10:29:13.257 に答える
0

次の例で試してください:

<?php
$input_array = array('zero, those players that are trialing for hib team, (hpb\'s) most of them are like 300 -400 pingers? umm..mager lagg and even worse when they play on uk server\'s i bet','1998-04-25T213200Z','http//boards.ie/vbulletin/showpost.php?p=67075');
$input_array_count= count($input_array);
$coumn_array = array('content','date','post');
$input_array_implode="'".implode("','",$input_array)."'";
$coumn_array_implode="'".implode("','",$coumn_array)."'";
$insert_query=mysql_query("insert into tablename (".$coumn_array_implode.") values (".$input_array_implode.")") or die(mysql_error());
?>

これはあなたの問題を解決するのに役立つと思います。

于 2013-01-17T10:22:19.670 に答える