<?php 

include("db_config.php"); 
if($_SERVER['REQUEST_METHOD']=='POST'){

	$url="https://www.orangegroceries.com/contact-us.php";
	if(!empty($url)) {
	  $response['data']=$url;
	  $response['status']=1;
	}
	else {
		$response['status']=0;
	}
	echo json_encode($response);
	mysqli_close($conn);
}