I am trying to get the properties of an array object and save it into the DB, here is my POST method
$http({
method:"POST",
async: false,
data: {first_name:'dilip',last_name:'belgumpi'}, url:"insert.php"
});
and in insert.php
$first_name=$_POST["first_name"];
When I run this code I am getting error like this
<b>Notice</b>: Undefined index: first_name in <b>C:\xampp\htdocs\tutor_crm\insert.php</b> on line <b>10</b><br />
– Dilip Belgumpi Feb 28 '17 at 10:10