1

我想知道是否有人可以向我展示一个相当不错且基本的 PHP 注册表单页面,该页面将个人资料页面保存到数据库中。

我打算用它来尝试构建一个更高级的,因为我正在尝试使用 PHP 变得更好。

如果你能给我看一个并解释一下,那就太好了。

4

1 回答 1

3

基本 PHP 注册/个人资料页面

http://www.webdeveloper.com/forum/showthread.php?265799-Login-amp-Registration-form-with-profile

像个人资料模板一样制作 member.php 并在用户完成注册后创建如下所示的 url

$profileUrl = http://www.yousite.com/members.php?user='.$userId;

当任何用户完成注册时生成用户 ID 并使用 $_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();

像上面一样使用它。创建您自己的代码以获取从数据库中获取的其他详细信息

于 2013-04-27T20:58:20.690 回答