十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
首先登陆要用用户名,密码等等信息,这些都要存在数据库中,这样才能用户登陆时验证是否能够登陆,
秀洲网站建设公司创新互联,秀洲网站设计制作,有大型网站制作公司丰富经验。已为秀洲1000多家提供企业网站建设服务。企业网站搭建\外贸网站制作要多少钱,请找那个售后服务好的秀洲做网站的公司定做!
1.创建一个数据库,建表例表一(用户名,密码)等等。。
1.设计页面代码包含连接数据库,数据库操作代码等等(加入用户,删除用户。。)
2.代码中包含用户登陆输入
用户名,密码
3.打开数据库表,查找是否有该用户名,如果存在,密码是否正确,不正确byebye
(请看java书本
数据库内容,包含建立数据库,添加删除基本操作)
search.html //前台网页编写
html
head
meta http-equiv="Content-Type"content="text/html;charset=gb2312"
title搜索/title
/head
body
form name="form" action="search.php" method="post"
input type="text" name="search_text" size="20"
input type="submit" value="搜索"
/form
/body
/html
search.php//后台处理文件
?php
$word=$_POST["search_text"];
$link=mysql_connect("localhost","root","password") or die("无法连接");
//localhost、root和password需要根据自己的实际情况来使用。
$db_selected=mysql_select_db("db_keywords",$link);
//db_keywords为要打开的数据库。
$sql="select * from keywords where word like '%$word%' order by count desc";
//keywords为要打开查询的表
$result=mysql_query($sql,$link);
while($row=mysql_fetch_row($result))
{
for($i=0;$imysql_num_fields($result);$i++)
echo "$row[$i]"." ";
echo "br";
}
?
这是最简单也是具有最基本功能的搜索页面,其他的需要自己修改和处理了。
希望对你有所帮助。
$db = mysql_connect("localhost", "root", "password");
mysql_select_db("mydb",$db);
if (isset($_POST['name'])) {
echo "你输入的用户是:". $_POST['name'];
}
$result = mysql_query("SELECT * FROM employees WHERE name='".$_POST['name']."'",$db);
while ($fields = mysql_fetch_row($result)) {
$data[] = $filelds;
}
if(!empty($data)){
foreach($data as $val){
foreach($val as $k = $v){
echo $k." ".$v."br /";
}
echo "br /hr /";
}
}else{
echo "此用户下没有数据。";
}
可能需要修改的地方,查询条件我是使用的name,根据你数据库中的字段名做一下更改,输出信息没有太多的处理,可以使用表格输出或是其它样式,可以自己调整一下,HTML部分省略了。
这个简单啊!
首页做个前台输入姓名和会员卡信息的页面,我做个简单的页面给你看
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
html xmlns="
head
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
title会员查询系统/title
/head
body
form id="form1" name="form1" method="post" action="test.php"
p
label for="name"/label
input type="text" name="name" id="name" /
/p
p
label for="vipid"/label
input type="text" name="vipid" id="vipid" /
/p
p
input type="submit" name="button" id="button" value="查询" /
/p
/form
/body
/html
然后我给你一个test.php的文件代码:
?php
$name = trim($_POST['name']);
$vipid = trim($_POST['vipid']);
$con = mysql_connect("127.0.0.1","数据库用户名","数据库密码");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$a = mysql_select_db("数据库名字", $con);
$sql = "select * from kh_customer where name = '$name' and vipid = '$vipid'";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
echo $row['name'] . " " . $row['data'];
echo "br /";
}
mysql_close($con);
?
页面美化自己去搞!只能帮你这么多了
两个页面即可实现,html页面写一个ajax例如:
script
var k=$("#kk").val();//获取用户输入的查找内容
$.ajax({
type:'get',
url:'xx.php',
data:'keyword='+i,
success:function(data){
var data1=eval("("+data+")") ;
if(data1){
$('#main').html(data1);//显示结果
}
},
});
/script
xx.php:
if($_GET){
$key=isset($_GET['keyword'])?$_GET['keyword']:'';
if($key){
//连接数据库通过关键词查找相关内容..$content
//结果返回: echo json_encode($content);
exit();
}else{
echo json_encode('');
exit();
}
}
对了,html页面要引入jquery插件