📄 install.php
字号:
<?php
///////////////////////////////////////////////////
// Advanced Poll 2.0.3 (PHP/MySQL) //
// Copyright (c)2001 Chi Kien Uong //
// URL: http://www.proxy2.de //
///////////////////////////////////////////////////
$version = "v2.03";
if (!isset($PHP_SELF)) {
$PHP_SELF = $HTTP_SERVER_VARS["PHP_SELF"];
if (isset($HTTP_GET_VARS)) {
while (list($name, $value)=each($HTTP_GET_VARS)) {
$$name=$value;
}
}
if (isset($HTTP_POST_VARS)) {
while (list($name, $value)=each($HTTP_POST_VARS)) {
$$name=$value;
}
}
}
if (!file_exists("./install/cross.gif")) {
$img_loc="http://www.proxy2.de/poll/install";
} else {
$img_loc="install";
}
if (file_exists("./include/config.inc.php")) {
include "./include/config.inc.php";
} else {
abort("Cannot find configuration file <u>config.inc.php</u>.");
}
if (file_exists("./include/$POLLDB[class]")) {
include "./include/$POLLDB[class]";
} else {
abort("Cannot find database class <u>$POLLDB[class]</u>.");
}
function print_header($refresh,$stp) {
global $PHP_SELF, $version, $img_loc;
$SELF = basename($PHP_SELF);
?>
<html>
<head>
<title>Advanced Poll <?php echo $version; ?> Installation</title>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="-1">
<?php
if ($refresh != -1) {
?>
<meta http-equiv="refresh" content="<?php echo "$refresh;URL=$SELF?action=$stp"; ?>">
<?php } ?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.td1 { font-family: "MS Sans Serif"; font-size: 9pt}
.textarea { font-family: "MS Sans Serif"; width: 450px; background-color: #C6C3C6; height: 140px; clip: rect( ); font-size: 9pt}
-->
</style>
<script language="Javascript">
<!--
function abort() {
if (window.confirm("Do you wish to cancel the installation?")) {
window.location.href = "http://"+window.location.host+window.location.pathname+"?action=cancel"
}
}
function go_back() {
history.go(-1);
}
function trim(value) {
startpos=0;
while((value.charAt(startpos)==" ")&&(startpos<value.length)) {
startpos++;
}
if(startpos==value.length) {
value="";
} else {
value=value.substring(startpos,value.length);
endpos=(value.length)-1;
while(value.charAt(endpos)==" ") {
endpos--;
}
value=value.substring(0,endpos+1);
}
return(value);
}
function check_data() {
document.FormPwd.username.value = trim(document.FormPwd.username.value);
document.FormPwd.password.value = trim(document.FormPwd.password.value);
if (document.FormPwd.username.value == "") {
alert("You forgot to fill in the username field!");
document.FormPwd.username.focus();
return false;
} else if (document.FormPwd.password.value == "") {
alert("You forgot to fill in the password field!");
document.FormPwd.password.focus();
return false;
} else if (document.FormPwd.password.value != document.FormPwd.confirm.value) {
alert("The passwords do not match!");
return false;
}
}
function set_focus() {
document.FormPwd.username.focus();
}
// -->
</script>
</head>
<?php
}
function welcome() {
global $PHP_SELF, $version, $img_loc;
$SELF = basename($PHP_SELF);
?>
<body bgcolor="#3A6EA5">
<br>
<br>
<table border="1" cellspacing="0" cellpadding="0" align="center" width="500">
<tr bgcolor="#C6C3C6">
<td>
<table width="500" border="0" cellspacing="0" cellpadding="1" align="center">
<tr bgcolor="#400080">
<td height="20" class="td1" bgcolor="#000084"><b><font color="#FFFFFF">
Advanced Poll <?php echo $version; ?> Installation</font></b></td>
<td height="20" class="td1" align="right" bgcolor="#000084"><img src="<?php echo $img_loc; ?>/cross.gif" width="16" height="14" border="0" usemap="#close"><map name="close"><area shape="rect" coords="1,1,14,12" href="javascript:abort()"></map>
</td>
</tr>
<tr align="center">
<td colspan="2">
<form method="post" action="<?php echo $SELF; ?>">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr bgcolor="#FFFFFF">
<td class="td1" height="60">
<table border="0" cellspacing="0" cellpadding="0" width="500">
<tr>
<td width="190"><img src="<?php echo $img_loc; ?>/install.gif" width="164" height="300" alt="Installation"></td>
<td width="310" valign="top" class="td1"><br>
<b><br>
Welcome to the Installation Wizard for <br>Advanced Poll
<?php echo $version; ?></b><br>
<br>
<br>
<br>
Press 'Next' button to begin the installation.</td>
</tr>
</table>
</td>
</tr>
<tr bgcolor="#C6C3C6">
<td align="center" height="20">
<img src="<?php echo $img_loc; ?>/h_line.gif" height="18" width="490">
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -