Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL non aggiunge informazioni al mio database

hai una sintassi di inserimento non valida questa è la sintassi valida

INSERT INTO customers (field1, field2) VALUES (val1, val2);

VEDI DOCUMENTAZIONE

inoltre hai una seria vulnerabilità di sql injection.. dovresti guardare QUI per aiuto su questo

Ti consiglierei di utilizzare query parametrizzate e istruzioni preparate... this SO POST lo copre bene

MODIFICA:

solo così non sto solo fornendo un collegamento, ma solo una risposta qui è un campione di cosa dovresti fare

$mysqli = new mysqli("server", "username", "password", "database_name");

if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}
$qry = $mysqli->prepare('INSERT INTO customers (name, phone, type, section, email, address, business, service, notes) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)');
$qry->bind_param('s', $name, $phone_num, $sec_num, $email, $cus_type, $business, $address, $service, $notes);

// can do it in one statement rather than multiples..
//$qry->bind_param('s', $name);
//$qry->bind_param('s', $phone_num);
//$qry->bind_param('s', $sec_num);
//$qry->bind_param('s', $email);
//$qry->bind_param('s', $cus_type);
//$qry->bind_param('s', $business);
//$qry->bind_param('s', $address);
//$qry->bind_param('s', $service);
//$qry->bind_param('s', $notes);

$qry->execute();
$qry->close();

EDIT2:

devi essere nuovo alla programmazione.. la tua istruzione if() verrà SEMPRE eseguita... il che significa che la inserirai sempre nel database.. ecco perché..

if ($cus_type = $_POST['Corporate']){ qui $cus_type è uguale a qualcos'altro alias $_POST['cusType'] ma nell'istruzione if lo stai assegnando a $_POST['Corporate']... che verrà sempre eseguito perché è un'affermazione vera.. ecco come se le istruzioni vengono eseguite logicamente..

if(boolean statement){
    //executes when true
};

if(true){
    //always executes
};

if('a' == 'b'){
    //will not execute
};

$a = 'a';
$b = 'b';
if($a == $b){
    //will not execute
};

if($a = $b){
    //will always execute because its assigning the value which is a boolean true statement.
};