PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

页面跳转后提示HTTP 异常 500(Internal Server Error):服务器尝试执行请求时遇到了意外情况

不言
不言 原创
2018-05-19 09:32:21 7067浏览

  页面跳转后提示HTTP 错误 500(Internal Server Error):服务器尝试执行请求时遇到了意外情况。
index.php跳转到chkadmin.php提示(服务器错误
网站在检索 http://localhost/shop/admin/chkadmin.php 时遇到错误。 该网站可能关闭进行维护或配置不正确。
以下是一些建议:
请稍后重新加载此网页。
HTTP 错误 500(Internal Server Error):服务器尝试执行请求时遇到了意外情况。)

index.php代码:

<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css/font.css?7.1.34" rel="stylesheet">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<p>&nbsp;</p>
<p> 
</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<script language="javascript">
function chkinput(form){
if(form.name.value==""){
alert("请输入用户名!");
form.name.select();
return(false);
}
if(form.pwd.value==""){
alert("请输入用户密码!");
form.pwd.select();
return(false);
}
return(true);
}
</script>
<form name="form1" method="post" action="chkadmin.php" onSubmit="return chkinput(this)">
<table width="545" border="0" align="center" cellpadding="0" cellspacing="0" id="__01">
<tr>
<td height="226" background="images/default_01.gif">&nbsp;</td>
</tr>
<tr>
<td height="45" align="right" background="images/default_02.gif">
<table width="407" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="57" align="center">用户名:</td>
<td width="94" align="center"><input type="text" name="name" size="14" maxlength="20" class="inputcss"></td>
<td width="53" align="center">&nbsp;密&nbsp;码:</td>
<td width="104" align="center"><input type="password" name="pwd" size="14" maxlength="20" class="inputcss"></td>
<td width="99">&nbsp;
<input name="imageField" type="image" src="images/default_07.gif" width="74" height="24" border="0"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="23" background="images/default_04.gif"></td>
</tr>
</table>
</form>
</body>
</html>

chkadmin.php代码

<?php

class chkinput
{
var $name;
var $pwd;

function chkinput($x,$y)
{
$this->name=$x;
$this->pwd=$y;
}

function checkinput()
{


声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。