0👍
i have identified the issue in
PHP Code:
if($_SERVER["REQUEST_METHOD"]=="POST" && empty($_POST))
{
//CONVERT THE POST INPUT REQUEST TO POST ARRAY
$_POST = json_decode(file_get_contents('php://input'),true);
}
we need to write the above code in php before using $_POST
- [Vuejs]-V-calendar datepicker date range event after first date is picked
- [Vuejs]-How can I customize Vant.js?
Source:stackexchange.com