编写php文件时,出现这个错误:Parse error: syntax error, unexpected T_STRING in 。。。on line 20
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/l...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="D:/Apache2.2/htdocs/Zxiangmu/style/register_p.css"/>
<title>注册</title>
</head>
<body>
<?php
$link = mysql_connect("localhost", "root", "root") or die("无法连接数据库".mysql_error()); //连接Mysql服务器
mysql_select_db("wxk",$link);
mysql_query("set names gb2312");
$sql=mysql_query("select * from xiangmu1);
$info=mysql_fetch_array($sql);
$accounts=$_POST[accounts];
$Password=$_POST[Password1];
$Email=$_POST[Email];
$realname=$_POST[RealName];
if($wxk){
echo ("数据库选择成功!");}
if ($_POST[Submit]="提交"){
If($name==$info){
echo "该账号已被注册";
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
}
if ($Email==$info){
echo"该邮箱已被注册";
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
}
$mysql=mysql_query("insert into xiangmu1 (accounts,Password1,Email,RealName)values('$accounts','$Password','$Email','$realname')");
echo "<script>alert('公告信息添加成功!');'window.location.href='add_affiche.php';</script>";
}
?>
</body>
</html> 展开
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="D:/Apache2.2/htdocs/Zxiangmu/style/register_p.css"/>
<title>注册</title>
</head>
<body>
<?php
$link = mysql_connect("localhost", "root", "root") or die("无法连接数据库".mysql_error()); //连接Mysql服务器
mysql_select_db("wxk",$link);
mysql_query("set names gb2312");
$sql=mysql_query("select * from xiangmu1);
$info=mysql_fetch_array($sql);
$accounts=$_POST[accounts];
$Password=$_POST[Password1];
$Email=$_POST[Email];
$realname=$_POST[RealName];
if($wxk){
echo ("数据库选择成功!");}
if ($_POST[Submit]="提交"){
If($name==$info){
echo "该账号已被注册";
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
}
if ($Email==$info){
echo"该邮箱已被注册";
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
}
$mysql=mysql_query("insert into xiangmu1 (accounts,Password1,Email,RealName)values('$accounts','$Password','$Email','$realname')");
echo "<script>alert('公告信息添加成功!');'window.location.href='add_affiche.php';</script>";
}
?>
</body>
</html> 展开
4个回答
展开全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="D:/Apache2.2/htdocs/Zxiangmu/style/register_p.css"/>
<title>注册</title>
</head>
<body>
<?php
$link = mysql_connect("localhost", "root", "root") or die("无法连接数据库".mysql_error()); //连接Mysql服务器
mysql_select_db("wxk",$link);
mysql_query("set names 'gb2312'");
$sql=mysql_query("select * from xiangmu1");
$info=mysql_fetch_array($sql);
$accounts=$_POST[accounts];
$Password=$_POST[Password1];
$Email=$_POST[Email];
$realname=$_POST[RealName];
if($wxk){
echo ("数据库选择成功!");}
if ($_POST[Submit]="提交"){
If($name==$info){
echo "该账号已被注册";
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
}
if ($Email==$info){
echo"该邮箱已被注册";
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
}
$mysql=mysql_query("insert into xiangmu1 (accounts,Password1,Email,RealName)values('$accounts','$Password','$Email','$realname')");
echo "<script>alert('公告信息添加成功!');'window.location.href='add_affiche.php';</script>";
}
?>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="D:/Apache2.2/htdocs/Zxiangmu/style/register_p.css"/>
<title>注册</title>
</head>
<body>
<?php
$link = mysql_connect("localhost", "root", "root") or die("无法连接数据库".mysql_error()); //连接Mysql服务器
mysql_select_db("wxk",$link);
mysql_query("set names 'gb2312'");
$sql=mysql_query("select * from xiangmu1");
$info=mysql_fetch_array($sql);
$accounts=$_POST[accounts];
$Password=$_POST[Password1];
$Email=$_POST[Email];
$realname=$_POST[RealName];
if($wxk){
echo ("数据库选择成功!");}
if ($_POST[Submit]="提交"){
If($name==$info){
echo "该账号已被注册";
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
}
if ($Email==$info){
echo"该邮箱已被注册";
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
}
$mysql=mysql_query("insert into xiangmu1 (accounts,Password1,Email,RealName)values('$accounts','$Password','$Email','$realname')");
echo "<script>alert('公告信息添加成功!');'window.location.href='add_affiche.php';</script>";
}
?>
</body>
</html>
展开全部
$sql=mysql_query("select * from xiangmu1);
这一行这里没有后边的引号,所以引发错误
这一行这里没有后边的引号,所以引发错误
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
echo"<script>alert('返回上一页');'windows.location.href=register.php';</script>";
改为
echo"<script>alert('返回上一页');\nwindows.location.href='register.php';</script>";
改为
echo"<script>alert('返回上一页');\nwindows.location.href='register.php';</script>";
追问
还是不对啊!!!你的qq号多少,我的是897994454,qq上改吧!
追答
工作时间,不上QQ。
你提示的错误为
少了一个“;”号结束、。
你仔细查看下代码吧!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
20行
echo 后面去掉括号
echo 后面去掉括号
追问
不对!还是20行的错误!追问快到三次了,赶紧加吧。
追答
你看看你的分号 调整好你的输入法
应该是设为全角输入了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询