I need to test an API
Here is my code :-
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$body = @file_get_contents('php://input');
$json = json_decode($body, true);
if (isset($json['email'])) {
$email = $json['email'];
$stmt = $db->query("SELECT count(*) as count FROM usersnew where email = '". $email."'");
$results = $stmt->fetchall();
$count = $results['0']['count'];
//TODO: check in db for existing entry
if($count==0){
//updated to add zipcode
$data = array(
'name' => $json['name'],
'email' => strtolower($json['email']),
'password' => $json['password'],
'phone' => $json['phone'],
'birthday' => $json['birthday'],
'sex' => $json['sex'],
'optin' => $json['opt_in'],
'zipcode' => $json['zip'],
'partnerid' => 'app001'
);
what i am trying is
curl -H "Content-Type: application/json" -d '{"version":"0"}'
but no output in this case what i think -d may be something different here (i think so)
help me