RSS フィードからデータを取り込み、タイトルと説明を mysql データベースの同じ行 (異なるフィールド) に追加したい
$result = $xml->xpath('//title'); //finding the title tags in the xml document and loading into variable
$result1 = $xml->xpath('//description'); //finding the title tags in the xml document and loading into variable
情報を変数にロードしていますが、これをデータと呼ばれる mysql テーブルに挿入する方法がわかりません。
簡単に聞こえますが、配列として苦労しています。