1

我再次对我的 PHP 进行破解,但我陷入了一些内联问题。我正在使用我在http://www.1stoptutorials.com/Membership_Course.html学到的成员脚本。

我的表有以下字段:userid、first_name、last_name、email_address、username、password、dob、guardianid、user_level、signup_date、last_login、激活。

我想要做的是在用户登录时使用我的表中的数据,但由于某种原因,我能够访问的只是名字和姓氏字段。其他人都没有工作。

这是我当前在标题中的 PHP

<?php
require_once ('verify.php'); 
// Start output buffering:
ob_start();
// Initialize a session:
session_start();
// If no first_name session variable exists, redirect the user:
if (!isset($_SESSION['first_name'])) {  
$url = BASE_URL . ''; // Define the URL.
ob_end_clean(); // Delete the buffer.
header("Location: $url");
exit(); // Quit the script. 
}
?>

它在底部被关闭。现在登录,他们使用他们的用户名和密码,但我想知道为什么我只能使用他们的名字和姓氏?另外我如何嵌入内联?我目前正在使用以下内容。

<p style="color:White;">
  Welcome 
  <strong>
    <a href="profile.php?id=<? echo $_SESSION['userid'] ?>" style="font-family:Arial, Helvetica, sans-serif;color:White;">
      <? echo $_SESSION['first_name'] ." ". $_SESSION['last_name'] ?>
    </a>
  </strong>
  &nbsp;&nbsp;-&nbsp;&nbsp;Home&nbsp;&nbsp;|&nbsp;&nbsp;
  <a href="photo.php" class="link">Photos</a>
  &nbsp;&nbsp;|&nbsp;&nbsp;
  <a href="video.php" class="link">Videos</a>
  &nbsp;&nbsp;|&nbsp;&nbsp;
  <a href="logout.php" class="link">Log Out</a>
</p>

但当然只有名称出现在我的输出页面中,而不是 id 或任何其他字段。

任何人都可以帮助或我需要发布更多信息吗?

或者任何人都可以建议一个更好的登录脚本?

4

2 回答 2

0

我想知道为什么我只能使用他们的名字和姓氏?

我相信,因为其中的某些代码verify.php不会在会话中存储任何其他内容。

于 2012-05-01T10:27:05.937 回答
0

仅仅因为您从中学到的脚本告诉您只能使用first_name并不意味着您必须继续使用相同的东西。您可以使用在存储数据时使用的任何字段。最有效的将是存储user_id

关于内联部分,这是有争议的。有些人喜欢内联 PHP,有些人喜欢内联 HTML。使用让你更舒服的东西。

于 2012-05-01T10:29:16.800 回答