我创建了一个登录系统,用户可以通过插入电子邮件和密码登录到应用程序。在用户创建他的个人资料页面并设置他的时间表后,以下代码将在屏幕上打印他的个人资料,没有任何错误。这是打印个人资料页面的代码:
<?php
if( isset($_GET['email']) === true && empty($_GET['email']) === false ){
$email = $_GET['email'];
if(user_exists($email) === true) {
$user_id = user_id_from_email($email);
$profile_data = user_data($user_id,'name','surname','email');
?>
<h1><font size="5"><?php echo $profile_data['name'];?> <?php echo $profile_data['surname']; ?> </font></h1>
<a href="profile_timetable.php" >Timetable</a>
<?php
}else {
echo 'Sorry, that user does not exist!';
}
}else{
header('Location: index.php');
exit();
}
我也有一个 .htaccess 文件,它是这样的:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /work/profile.php?email=$1
这是打印时间表页面的代码:
<?
if( isset($_GET['email']) === true && empty($_GET['email']) === false ){
$email = $_GET['email'];
if(user_exists($email) === true) {
$user_id = user_id_from_email($email);
$profile_data_timetable = $user_data_profile_timetable($user_id,'hour_start_1','minute_start_1','hour_finish_1','minute_finish_1','activity_1');
?>
<font size="5">
<?php echo $user_data_profile_timetable['hour_start_1']; ?>
<?php echo $user_data_profile_timetable['minute_start_1']; ?>
<?php echo $user_data_profile_timetable['hour_finish_1']; ?>
<?php echo $user_data_profile_timetable['minute_finish_1']; ?>
<?php echo $user_data_profile_timetable['activity_1']; ?>
</font>
<?php
}else {
echo 'Sorry, that user does not exist!';
}
}else{
header('Location: index.php');
exit();
}
我的问题是,如果我单击“时间表链接”来获取用户的时间表,我只会得到一个空屏幕(可能会重定向到 index.php,这是一个空页面)。我该如何解决这个问题,以便链接能够正常工作并打印用户的时间表?