Changes between Version 5 and Version 6 of login-service
- Timestamp:
- Aug 11, 2014, 1:56:40 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
login-service
v5 v6 50 50 function authenticate_user($user, $password, $app_id) { 51 51 $url = 'https://members.mayfirst.org:8080/check'; 52 $vars = 'user=' . $user . '&password=' . $password.53 '&app_id=' . $app_id;52 $vars = 'user=' . urlencode($user) . '&password=' . urlencode($password) . 53 '&app_id=' . urlencode($app_id); 54 54 55 55 $ch = curl_init( $url );