Syntax error in sql

Problems with the Windows version of XAMPP, questions, comments, and anything related.

Syntax error in sql

Postby krasi_e_d » 25. March 2012 15:41

Hello, guys

I use ApacheFriends XAMPP version 1.7.7

+ Apache 2.2.21
+ MySQL 5.5.16 (Community Server)
+ PHP 5.3.8

When I start my code from browser the data in table is with ??????, but when I paste my output sql code in phpadmin everything is ok. I try with all collation, but doesn't work. I wrote in my code the charset
Code: Select all
<html>
<head>
<meta  http-equiv="Content-Type" content="text/html;charset=cp1251_bulgarian_ci" />
</head>
<body>
<?php
$databasehost = "localhost";
$databasename = "export_ajur";
$databasetable = "invoice";
$databaseusername ="root";
$databasepassword = "password";
$fieldseparator = ",";
$lineseparator = "\n";
$csvfile = "1.csv";

$addauto = 0;


$save = 1;
$outputfile = "output.sql";
if(!file_exists($csvfile)) {
   echo "File not found. Make sure you specified the correct path.\n";
   exit;
}
$file = fopen($csvfile,"r");

if(!$file) {
   echo "Error opening data file.\n";
   exit;
}

$size = filesize($csvfile);

if(!$size) {
   echo "File is empty.\n";
   exit;
}

$csvcontent = fread($file,$size);

fclose($file);

$con = @mysql_connect($databasehost,$databaseusername,$databasepassword) or die(mysql_error());
@mysql_select_db($databasename) or die(mysql_error());

$lines = 0;
$queries = "";
$linearray = array();

foreach(explode($lineseparator,$csvcontent) as $line) {

   $lines++;

   $line = trim($line," \t");
   
   $line = str_replace("\r","",$line);
   
      
   


$linearray = explode($fieldseparator,$line);
   
   $linemysql = implode("','",$linearray);
   
   if($addauto)
     
      $query = "insert into $databasetable values('$linemysql');";
   else
      $query = "insert into $databasetable values ('$linemysql');";
   
   $queries .= $query . "\n";

   @mysql_query($query);
}

@mysql_close($con);

if($save) {
   
   if(!is_writable($outputfile)) {
      echo "File is not writable, check permissions.\n";
   }
   
   else {
      $file2 = fopen($outputfile,"w");
      
      if(!$file2) {
         echo "Error writing to the output file.\n";
      }
      else {
         fwrite($file2,$queries);
         fclose($file2);
      }
   }
   
}

echo "Found a total of $lines records in this csv file.\n";


?>
</body>
</html>


this is my output code
Code: Select all
insert into invoice values ('ID_PURCHASE_INVOICE','DOC_TYPE_NAME','DOC_EXT_CODE','DOC_NUM','DOC_DATE','WOVAT_AMOUNT','VAT_AMOUNT','TOTAL_AMOUNT','CONTRAGENT_NAME','CONTRAGENT_BULSTAT','CONTRAGENT_VATNUMBER','CONTRAGENT_POST_ADDRESS','CONTRAGENT_ZIP','CONTRAGENT_CITY','CONTRAGENT_AREA','CONTRAGENT_STREET','CONTRAGENT_MOL','CONTRAGENT_PHONE','CONTRAGENT_BANK','CONTRAGENT_BANK_CODE','CONTRAGENT_BANK_ACCOUNT','CONTRAGENT_EXT_CODE','CONTRAGENT_EMAIL','PAYMENT_NAME','DOC_MARKER1','DOC_MARKER2','DOC_MARKER3','DOC_MARKER4','DOC_MARKER5','DOC_MARKER6','DOC_MARKER7','DOC_MARKER8','DOC_MARKER9','DOC_MARKER10');
insert into invoice values ('108826','ДАНЪЧНА ФАКТУРА','1','111366','2/15/2012','160.08','32.02','192.1','ПРЕЦИЗ ООД','103565237','BG103565237','ВАРНА ГЕН.КОЛЕВ 38','','','','','','','','','','','','БАНКА','','','','','','','','','','');
insert into invoice values ('');

krasi_e_d
 
Posts: 1
Joined: 25. March 2012 15:31
Operating System: Windows 7

Return to XAMPP for Windows

Who is online

Users browsing this forum: No registered users and 82 guests