apici all'interno di una variabile
Inviato: 16 gen 2016, 14:22
Buongiorno, ho il seguente problema se nel contenuto della variabile sono presenti gli apici mi da il seguente errore:
Errore (essendo un campo dove bisogna inserire una relazione sulla lavorazione non devono esserci delle limitazioni)
Errore durante l'accesso alla banca dati:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near
posto anche il codice che ho compilato
/**
* Insert a record on another table
*/
// SQL statement parameters
$insert_table = 'telefonate'; // Table name
$insert_fields = array( // Field list, add as many as needed
'TEC' => "'{TEC}'",
'IDDCLIENTE' => "'[use]'",
'NOTE' => "'{NOTE}'",
'DATAAPPUNTAMENTO' => "'{DATAAPPUNTAMENTO}'",
'ORAAPPUNTAMENTO' => "'{ORAAPPUNTAMENTO}'",
'ORASCHEDA' => "'{ORASCHEDA}'",
'DATASCHEDA' => "'{DATASCHEDA}'",
'USER' => "'[ta]'",
'TEMPO' => "'{TEMPO}'",
);
// Insert record
$insert_sql = 'INSERT INTO ' . $insert_table
. ' (' . implode(', ', array_keys($insert_fields)) . ')'
. ' VALUES (' . implode(', ', array_values($insert_fields)) . ')';
sc_exec_sql($insert_sql);
Errore (essendo un campo dove bisogna inserire una relazione sulla lavorazione non devono esserci delle limitazioni)
Errore durante l'accesso alla banca dati:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near
posto anche il codice che ho compilato
/**
* Insert a record on another table
*/
// SQL statement parameters
$insert_table = 'telefonate'; // Table name
$insert_fields = array( // Field list, add as many as needed
'TEC' => "'{TEC}'",
'IDDCLIENTE' => "'[use]'",
'NOTE' => "'{NOTE}'",
'DATAAPPUNTAMENTO' => "'{DATAAPPUNTAMENTO}'",
'ORAAPPUNTAMENTO' => "'{ORAAPPUNTAMENTO}'",
'ORASCHEDA' => "'{ORASCHEDA}'",
'DATASCHEDA' => "'{DATASCHEDA}'",
'USER' => "'[ta]'",
'TEMPO' => "'{TEMPO}'",
);
// Insert record
$insert_sql = 'INSERT INTO ' . $insert_table
. ' (' . implode(', ', array_keys($insert_fields)) . ')'
. ' VALUES (' . implode(', ', array_values($insert_fields)) . ')';
sc_exec_sql($insert_sql);