Ejemplo n.º 1
0
     $response["points"] = $points;
     echo json_encode($response);
 } else {
     if ($tag == 'chgpass') {
         $email = $_POST['email'];
         $newpassword = $_POST['newpas'];
         $hash = $db->hashSSHA($newpassword);
         $encrypted_password = $hash["encrypted"];
         // encrypted password
         $salt = $hash["salt"];
         $subject = "Change Password Notification";
         $message = "Hello Piggy Rewards Customer,\n\nYour Password has been sucessfully changed.\n\nRegards,\\Piggy Rewards Team.";
         $from = "*****@*****.**";
         $headers = "From: svetvaz@gmail.com";
         if ($db->isUserExisted($email)) {
             $user = $db->forgotPassword($email, $encrypted_password, $salt);
             if ($user) {
                 $response["success"] = 1;
                 mail($email, $subject, $message, $headers);
                 echo json_encode($response);
             } else {
                 $response["error"] = 1;
                 echo json_encode($response);
             }
             // user is already existed - error response
         } else {
             $response["error"] = 2;
             $response["error_msg"] = "User does not exist";
             echo json_encode($response);
         }
     } else {
Ejemplo n.º 2
0
         } else {
             // User failed To Register
             $response["error"] = 1;
             $response["error_msg"] = "JSON Error Occurred in Registration";
             echo json_encode($response);
         }
     }
 } elseif ($tag == 'chgpass') {
     $email = $_POST["email"];
     $newpassword = $_POST["newpas"];
     $subject = "Change Password Notification";
     $message = "Hello User, \n\nYour Password is successfully Changed. \n\nRegards, \nINeedAHelp Team";
     $from = "*****@*****.**";
     $headers = "From:" . $from;
     if ($db->isUserExisted($phone)) {
         $user = $db->forgotPassword($phone, $newpassword);
         if ($user) {
             $response["success"] = 1;
             mail($email, $subject, $message, $headers);
             echo json_encode($response);
         } else {
             $response["error"] = 1;
             echo json_encode($response);
         }
     } else {
         // User is Already existed - error Response
         $response["error"] = 2;
         $response["error_msg"] = "User Not Exists";
         echo json_encode($response);
     }
 } elseif ($tag == 'forpass') {