Jump to content
php.lv forumi

Array Darbojas ar echo bet nerakstās MySQL tabulā


Bunkertor 7

Recommended Posts

Sveiki,

 

Reku uzrakstīju skriptu, kas ver vaļā CSV tabulu, pārvērš to par Array un tad atdala katru elementu. Ideja ir tāda, ka elementi tiek ierakstīti MySQL tabulā. Kad mēģinu izvadīt elementus are "echo" palīdzību, viss strādā.

 

Kad mēģinu tos pašus datus rakstīt iekšā tabulā, tur nonāk tikai Array[0], Array[1] utt. Izmēģinājos gan tā, gan šitā. Būšu pateicīgs par palīdzību!

 

<?php
$csv = array();
$file = fopen('file.csv', 'r');

while (($result = fgetcsv($file)) !== false)
{
   $csv[] = $result;
}

fclose($file);


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

mysql_select_db("***", $con);

for ($row = 1; $row < 3; $row++)
{
   echo $csv[$row][0]." and ".$csv[$row][1]." and ".$csv[$row][2];
   echo "<br />";
mysql_query("INSERT INTO *** (ref, title, url)
VALUES ('$csv[$row][0]', '$csv[$row][1]', '$csv[$row][2]')");
}

echo "thanks";
mysql_close($con);
?>

 

Varbūt man vajadzētu mēģināt Loop iekš Loop? Tomēr īsti nezinu, kā to izdarīt.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...