This repository has been archived by the owner on May 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html><head><meta charset="utf-8"><title>云颜文字·源商店:管理控制台</title></head><body> | ||
<center>云颜文字·源商店<h1>管理控制台</h1></center> | ||
<hr> | ||
<?php | ||
session_start(); | ||
$url = ""; | ||
if (isset($_SESSION['username'])) { | ||
if ($_SESSION['userflag'] == 1) { | ||
$url = "emostore_admin_alldata.php"; | ||
} | ||
if ($_SESSION['userflag'] == 0) { | ||
$url = "emostore_admin_login_ui.php?backurl=emostore_admin_alldata.php"; | ||
} | ||
}else{ | ||
$url = "emostore_admin_login_ui.php?backurl=emostore_admin_alldata.php"; | ||
} | ||
echo "<meta http-equiv=\"Refresh\" content=\"1;URL=".$url."\">"; | ||
echo "<center><i><a href='".$url."'>正在加载</a></i></center>"; | ||
include 'emostore_admin_sqlsetting.php'; | ||
echo $footer; | ||
?></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters