php写入mysql信息的问题
这是mysql.php<?php$link=mysql_connect('localhost','root','123')ordie('Couldnotconnect:'...
这是mysql.php
<?php
$link = mysql_connect('localhost', 'root', '123')
or die('Could not connect: ' . mysql_error());
mysql_select_db('sports') or die('Could not select database');
mysql_query("set names gb2312");
if($_POST["name"])
{
$sql="insert into bm(name,number,xiangmu) values ('$_POST[name]',$_POST[number],$_POST[sports])";
$query = mysql_query($sql);
if($query)
{echo "输入数据库成功!";
echo("<script>location.href('index.php')</script>");}
else
echo "输入数据库失败!";
echo("<script>location.href('index.php')</script>");
}
else
echo ("<script>alert('请你输入内容好吗?')</script>");
echo("<script>location.href('index.php')</script>");
// 关闭连接
mysql_close($link);
?>
<div align="center"><a href="index.php">如果无法跳转,请点击这里</a>
</div>
这是:index.php
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<form name="test" action="mysql.php" method="post">
<div align="center">
<h1>运动会报名系统</h1>
<p>运动员名称:
<input type="text" name="name" align="center" size="10" maxlength="12" >
</p>
<p>运动员学号码:
<input type="text" name="number" align="center" size="10" maxlength="20">
</p>
<p>运动项目:
<input type="text" name="sports" align="center" size="10" maxlength="20" />
</p>
</div>
<p align="center"><input type="submit" value="录入信息" /></p>
</form>
<div align="center"><a href="chaxun.php">查询已录入的名单</a>
</div>
问题是:怎么只能写入数字,一旦输入其他的就写不进去了呢 展开
<?php
$link = mysql_connect('localhost', 'root', '123')
or die('Could not connect: ' . mysql_error());
mysql_select_db('sports') or die('Could not select database');
mysql_query("set names gb2312");
if($_POST["name"])
{
$sql="insert into bm(name,number,xiangmu) values ('$_POST[name]',$_POST[number],$_POST[sports])";
$query = mysql_query($sql);
if($query)
{echo "输入数据库成功!";
echo("<script>location.href('index.php')</script>");}
else
echo "输入数据库失败!";
echo("<script>location.href('index.php')</script>");
}
else
echo ("<script>alert('请你输入内容好吗?')</script>");
echo("<script>location.href('index.php')</script>");
// 关闭连接
mysql_close($link);
?>
<div align="center"><a href="index.php">如果无法跳转,请点击这里</a>
</div>
这是:index.php
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<form name="test" action="mysql.php" method="post">
<div align="center">
<h1>运动会报名系统</h1>
<p>运动员名称:
<input type="text" name="name" align="center" size="10" maxlength="12" >
</p>
<p>运动员学号码:
<input type="text" name="number" align="center" size="10" maxlength="20">
</p>
<p>运动项目:
<input type="text" name="sports" align="center" size="10" maxlength="20" />
</p>
</div>
<p align="center"><input type="submit" value="录入信息" /></p>
</form>
<div align="center"><a href="chaxun.php">查询已录入的名单</a>
</div>
问题是:怎么只能写入数字,一旦输入其他的就写不进去了呢 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询