2016-07-25 38 views
-1

我下面這個教程http://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/Web服務的Android PHP MySQL的註冊過程

但我現在面臨一個問題把數據上傳到mySQl.here是該項目的詳細代碼。

register.php

<?php 
require_once 'include/DB_Functions.php'; 
$db = new DB_Functions(); 

// json response array 
$response = array("error" => FALSE); 

if (isset($_POST['name']) && isset($_POST['email']) &&   
isset($_POST['password'])) { 

// receiving the post params 
$name = $_POST['name']; 
$email = $_POST['email']; 
$password = $_POST['password']; 

// check if user is already existed with the same email 
if ($db->isUserExisted($email)) { 
    // user already existed 
    $response["error"] = TRUE; 
    $response["error_msg"] = "User already existed with " . $email; 
    echo json_encode($response); 
    } else { 
    // create a new user 
    $user = $db->storeUser($name, $email, $password); 
    if ($user) { 
     // user stored successfully 
     $response["error"] = FALSE; 
     $response["uid"] = $user["unique_id"]; 
     $response["user"]["name"] = $user["name"]; 
     $response["user"]["email"] = $user["email"]; 
     $response["user"]["created_at"] = $user["created_at"]; 
     $response["user"]["updated_at"] = $user["updated_at"]; 
     echo json_encode($response); 
    } else { 
     // user failed to store 
     $response["error"] = TRUE; 
     $response["error_msg"] = "Unknown error occurred in registration!"; 
     echo json_encode($response); 
    } 
} 
} else { 
$response["error"] = TRUE; 
$response["error_msg"] = "Required parameters (name, email or password) is 
missing!"; 
echo json_encode($response); 
} 
?> 

包括/ config.php中

<?php 
define("DB_HOST", "localhost"); 
define("DB_USER", "root"); 
define("DB_PASSWORD", ""); 
define("DB_DATABASE", "android_api"); 
?> 

包括/ DB_Connect.php

<?php 
class DB_Connect { 
private $conn; 

// Connecting to database 
public function connect() { 
    require_once 'Config.php'; 

    // Connecting to mysql database 
    $this->conn = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_DATABASE); 

    // return database handler 
    return $this->conn; 
} 
} 

?> 

包括/ DB_Functions.php

<?php 
class DB_Functions { 

private $conn; 

// constructor 
function __construct() { 
    require_once 'DB_Connect.php'; 
    // connecting to database 
    $db = new Db_Connect(); 
    $this->conn = $db->connect(); 
} 

// destructor 
function __destruct() { 

} 

/** 
* Storing new user 
* returns user details 
*/ 
public function storeUser($name, $email, $password) { 
    $uuid = uniqid('', true); 
    $hash = $this->hashSSHA($password); 
    $encrypted_password = $hash["encrypted"]; // encrypted password 
    $salt = $hash["salt"]; // salt 

    $stmt = $this->conn->prepare("INSERT INTO users(unique_id, name, email, 
encrypted_password, salt, created_at) VALUES(?, ?, ?, ?, ?, NOW())"); 
    $stmt->bind_param("sssss", $uuid, $name, $email, $encrypted_password, 
$salt); 
    $result = $stmt->execute(); 
    $stmt->close(); 

    // check for successful store 
    if ($result) { 
     $stmt = $this->conn->prepare("SELECT * FROM users WHERE email = ?"); 
     $stmt->bind_param("s", $email); 
     $stmt->execute(); 
     $user = $stmt->get_result()->fetch_assoc(); 
     $stmt->close(); 

     return $user; 
    } else { 
     return false; 
    } 
    } 

/** 
* Get user by email and password 
*/ 
    public function getUserByEmailAndPassword($email, $password) { 

    $stmt = $this->conn->prepare("SELECT * FROM users WHERE email = ?"); 

    $stmt->bind_param("s", $email); 

    if ($stmt->execute()) { 
     $user = $stmt->get_result()->fetch_assoc(); 
     $stmt->close(); 

     // verifying user password 
     $salt = $user['salt']; 
     $encrypted_password = $user['encrypted_password']; 
     $hash = $this->checkhashSSHA($salt, $password); 
     // check for password equality 
     if ($encrypted_password == $hash) { 
      // user authentication details are correct 
      return $user; 
     } 
    } else { 
     return NULL; 
    } 
    } 

/** 
* Check user is existed or not 
*/ 
    public function isUserExisted($email) { 
    $stmt = $this->conn->prepare("SELECT email from users WHERE email = ?"); 

    $stmt->bind_param("s", $email); 

    $stmt->execute(); 

    $stmt->store_result(); 

    if ($stmt->num_rows > 0) { 
     // user existed 
     $stmt->close(); 
     return true; 
    } else { 
     // user not existed 
     $stmt->close(); 
     return false; 
    } 
    } 

/** 
* Encrypting password 
* @param password 
* returns salt and encrypted password 
*/ 
    public function hashSSHA($password) { 

    $salt = sha1(rand()); 
    $salt = substr($salt, 0, 10); 
    $encrypted = base64_encode(sha1($password . $salt, true) . $salt); 
    $hash = array("salt" => $salt, "encrypted" => $encrypted); 
    return $hash; 
    } 

/** 
* Decrypting password 
* @param salt, password 
* returns hash string 
*/ 
    public function checkhashSSHA($salt, $password) { 

    $hash = base64_encode(sha1($password . $salt, true) . $salt); 

    return $hash; 
    } 

    } 

?> 

數據庫結構

CREATE TABLE `users` (
`id` int(11) NOT NULL, 
`unique_id` varchar(23) NOT NULL, 
`name` varchar(50) NOT NULL, 
`email` varchar(100) NOT NULL, 
`encrypted_password` varchar(80) NOT NULL, 
`salt` varchar(10) NOT NULL, 
`created_at` datetime DEFAULT NULL, 
`updated_at` datetime DEFAULT NULL 
) ENGINE=InnoDB DEFAULT CHARSET=latin1; 

誤差表示爲:{「錯誤」:真 「ERROR_MSG」:「必需參數(姓名,電子郵件或密碼)「}

和我發佈的網址是:http://localhost:8080/android_login_api/register.php?name=bilal&[email protected]&password=123456

但仍然不知道爲什麼會發生,因爲我給所有所需的PARAMS

+1

您正在通過get方法傳遞數據並通過發佈請求它。嘗試用isset($ _ GET ['name'])替換isset($ _ POST ['name']) –

+0

該死的,它的工作。我怎麼會想念這個? :/ Btw謝謝:) – Devilism

回答

1

乍一看... 此URL GET參數。 POST參數通常與表單一起發送。更改$ _POST全局變量$ _GET(請注意SQL注入),或嘗試使用FORM發送數據。 由於全局變量$ _POST爲空,您將看到錯誤消息。