$postdata = file_get_contents("php://input");
this code give value like given below
string(53) "user_name=test&password=471476&sessionId=1&userType=1"
I need to insert the values in table.
how can I insert the values?
$keywords = preg_split("/[\s,]+/", $postdata);
print_r($keywords);