码迷,mamicode.com
首页 > Web开发 > 详细

收藏php

时间:2014-04-27 23:04:15      阅读:644      评论:0      收藏:0      [点我收藏+]

标签:com   class   blog   http   div   size   style   tar   width   ext   color   

以下是PHP数据库的代码:

<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<style type="text/css">
body{
background-color: cyan;
margin:0 550px 0 516px;
padding: 0;
font-family: "微软雅黑";
}
</style>
</head>
<?php
if(@$_POST[‘submit‘]){
$name =$_POST["name"];
$xinb = $_POST["xinb"];
$age = $_POST["age"];
$haoma = $_POST["haoma"];
$dizhi = $_POST["dizhi"];
$conn = @mysql_connect("localhost","root","") or die("数据库连接失败,请检查你的网络,稍后再试试");
mysql_select_db("test");
mysql_query("set names ‘utf8‘");
$sql ="INSERT INTO `test`.`message` (`id`, `name`, `xinb`, `age`, `haoma`, `dizhi`)
VALUES (NULL, ‘$name‘, ‘$xinb‘, ‘$age‘, ‘$haoma‘,‘$dizhi‘)";
mysql_query($sql);
mysql_close($conn);
}
?>

<body>
<marquee behaviof="alternate">
<font size="8" color="red">学生管理系统</font>
</marquee>
<form action="php_mysql_list.php" method="post">
<br/>
名字: <input type="text" name="name" style="width: 230px"/> <br/>
性别: <input type="text" name="xinb" style="width: 230px"/> <br/>
年龄: <input type="text" name="age" style="width: 230px"/> <br/>
电话: <input type="text" name="haoma" style="width: 230px"/> <br/>
住址: <textarea name="dizhi" cols="30" rows="10"></textarea> <br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" name="submit" value="添加"> <br/>
</form>

</body>
</html>

里面主要是以   POST     以及  灵活运用PHPMYAMMIN 软件  和  添加表   和数据  ()到数据库  和  删除  表   ($sql = "delete from `message` where id=$id";)

 

收藏php,码迷,mamicode.com

收藏php

标签:com   class   blog   http   div   size   style   tar   width   ext   color   

原文地址:http://www.cnblogs.com/fg19/p/3695235.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!