iOS PHP 註冊登入系統(一) PHP部分

2021-07-10 04:34:19 字數 2008 閱讀 2838

最後達成效果:

分析做專案的基本流程:

1.先建立資料庫

2.寫php服務端

3.寫ios使用者端

1.建立資料庫

我用的是wamp。

資料庫名稱為ioslogin,表名為users其中有3個字段user_id,user_name和user_pwd。

user_id為自增長。

2.php服務端

php端我用的是eclipsephp編寫。

先建立乙個配置檔案config.php。

<?php 

$dbhost="localhost";

$dbuser="root";

$dbpwd="";

$dbname="ioslogin";

?>

然後建立主要檔案 index.php。

<?php 

header("content-type:text/html;charset=utf-8");

require_once "config.php";

//連線資料庫

$connection = mysql_connect($dbhost,$dbuser,$dbpwd);

$db_selecct = mysql_select_db($dbname);

$action = $_get['action']; //用來區分是登入還是註冊

$user_name = $_get['user_name']; //get方法方便用於除錯

$user_pwd = $_get['user_pwd'];

switch ($action)

else

$returnarr = array("loginflag" => $loginflag);

echo json_encode($returnarr); //輸出json格式

break;

case "regist":

$str = "insert into users (user_name,user_pwd) values ('$user_name','$user_pwd')";

$result = mysql_query($str,$connection);

if($result)

else

$returnarr = array("registflag" => $registflag);

echo json_encode($returnarr);

break;

default :

echo "登入方式錯誤";

return false;

break;

} mysql_close($connection);

?>

寫到這裡 同學們可以先對php進行測試看看有沒有錯誤。

可以先在資料庫裡加一條資料。

然後在瀏覽器裡輸入localhost/ioslogin/index.php?action=login&user_name=admin&user_pwd=admin

其中ioslogin是php專案名稱,有輸出json就差不多是正確的。

ios+php 

註冊登入系統(二) ios部分

php註冊登入系統 一 極簡

序 登入註冊系統是日常上網最普通的操作,我設了乙個分類一步步完善註冊登入系統,若有 錯誤請慧教 所用語言 php 資料庫 mysql 本次實現功能 1.使用者註冊 2.使用者登入 主要檔案 完整 1 sql 在已有的資料庫裡建立user表,id,username,password三個字段 creat...

註冊登入系統

def print print print 歡迎來到學生管理系統 print print print 1.註冊 print 2.登入 print 3.退出 print print def input try zh input 請輸入賬號 3 6 mm input 請輸入密碼 6 12 if not ...

php 會員 註冊,PHP製作使用者註冊系統 PHP

你的 郵箱 密碼 的md5值是 注意我們用了htmlspecialchars,避免使用者填入奇怪的東西。然後是資料庫操作,我們使用mysqli,mysql已經廢棄了,現在推薦用 mysqli,當然你也可以用 pdo。首先我們指明資料庫的一些資訊 db server localhost db user...