我想知道是否有人可以向我展示一个相当不错的基本PHP注册表格页面,该页面将个人资料页面保存到数据库中。
我打算用它来尝试建立一个更高级的,因为我正在努力改善PHP。
如果你能告诉我一个并解释一下那会很棒。
答案 0 :(得分:3)
基本PHP注册/个人资料页面
http://www.webdeveloper.com/forum/showthread.php?265799-Login-amp-Registration-form-with-profile
将member.php设置为个人资料模板,并在用户完成注册时创建一个类似于下面的网址
$profileUrl = http://www.yousite.com/members.php?user='.$userId;
当任何用户完成注册并获得userId usiong $ _GET
时生成用户ID在members.php中
$userId = $_GET['userId'];
并根据用户ID从数据库中获取用户详细信息。这就是
在members.php中
$userId = $_GET['userId'];
include('your database class file');
$sth = $dbconnect->prepare("SELECT first_name,last_name FROM register WHERE userId = :userId");
$params = array("userId" => $userId);
$sth->execute($params);
$status = $sth->fetchAll();
像上面一样使用它。创建自己的代码以获取从数据库中提取的其他详细信息