定义头部文件,防止写中文时乱码
header("content-type:text/html;charset=utf-8");
接收数据
$username = $_POST["uname"];
$userpwd = $_POST["upwd"];
处理数据:将接收到的用户名和密码 添加到数据库的user表中
1--连接数据源 mysql_connect
$db = mysql_connect("localhost","root","root");
2--选择数据库 mysql_select_db
mysql_select_db( "db1811" , $db );//选择了$db下的db1811数据库
3--设置字符编码 (防止乱码) mysql_query
mysql_query( "set names utf8" );
4--编写sql语句 删除功能--删
$sql = "delete from score where sid=$id";
5--执行sql语句 mysql_query
mysql_query( $sql );
$row = mysql_affected_rows();返回受影响的行数
echo $row;
处理结果
if( $row ){
echo "<script>alert('删除成功');location.href='index.php';</script>";
}else{
echo "<script>alert('删除失败');location.href='index.php';</script>";
}