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

Inserimento di dati dal front-end a mysql db in angularjs

Il tuo script per l'inserimento dei dati è sbagliato. Sostituiscilo con il seguente

$http.post("server/insert.php",{'fstname': $scope.newFriend.fname, 'lstname': $scope.newFriend.lname})
        .success(function(data, status, headers, config){
            console.log("inserted Successfully");
        });

e cambia anche il php come segue.

$data = json_decode(file_get_contents("php://input"));
$fstname = mysql_real_escape_string($data->fstname);
$lstname = mysql_real_escape_string($data->lstname);
mysql_connect("localhost", "root", "") or die(mysql_error()); 
mysql_select_db("angularjs") or die(mysql_error()); 
mysql_query("INSERT INTO friends (fname,lname) VALUES ('$fstname', '$lstname')"); 
Print "Your information has been successfully added to the database."; 

Questo ha funzionato per me quando ho provato con il tuo codice.