Salve sto scrivendo perchè è 3 giorni che non riesco a far funzionare una query dove lo script dell'INSERT funziona in locale e su altervista ma non esegue la query su altervista mentre in locale la esegue lascio il codice sotto:
Codice PHP:
<?php
include 'connection.php';
$title = $_POST['client'];
$client = $_POST['client'];
$instruction = $_POST["desc"];
$data = $_POST['data'];
$status = $_POST['status'];
$worker = $_POST['work'];
$sql = "INSERT into project (title, client, instruction, data, status, worker) values ('$title','$client','$instruction','$data','$status','$worker')";
if($_POST['addproject']){
if(mysqli_query($conn, $sql)or DIE('Error'.mysqli_error())) {
echo "Dati aggiunti correttamente";
}
else {
echo "Dati non aggiunti correttamente:".mysqli_error();//da qui non da nessu errore e neache sopra nella query
}
}
?>