软件工程概论第一节

1、网站系统开发须要掌握的技术javascript

    PHP、.NET、HTML等编程语言中至少一种以及环境配置、脚本语言、数据库链结等技术。php

2、课堂测试的源程序代码html

   HTML源代码:java

        

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>登录界面</title>
</head>mysql

<body>
<center>
<h1>请登陆</h1>
<br><br><br><br>
<form name="first" action="land2.php" method="post">
<table width="500" border="0" cellspacing="20" cellpadding="0">
<tr>
<td>用户名:</td>
<td><input type="text" name="ures"></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="ps"></td>
</tr>
<tr>
</tr>
<tr>
<td colspan="3" align="center"><input type="submit" value="登陆"、><!--注册按钮-->
<input type="reset" value="取消"><!--取消按钮-->

</tr>
</table>
</form>
<br><br><br>
</center>
</body>
</html>sql

 

 

PHP源代码:  数据库

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>登录</title>
</head>编程

<body><?php
if($_POST['ures']=='')
{
echo "<script>alert('用户名不能为空');</script>";
echo "<script language='javascript'>";
echo " location='index1.html ';";
echo "</script>";
}
elseif($_POST['ps']=='')
{
echo "<script>alert('密码不能为空');</script>";
echo "<script language='javascript'>";
echo " location='index1.html ';";
echo "</script>";
}
error_reporting(E_ALL^E_NOTICE^E_WARNING^E_DEPRECATED);
mysql_connect('localhost','root','');
mysql_select_db('mysql');
mysql_query('SET NAMES utf8');
$sql="SELECT password FROM menber2 WHERE user='$_POST[ures]'";
$rs=mysql_query($sql);
$row=mysql_fetch_assoc($rs);
$r=$_POST['ures'];
if($row)
{
if($row['password']==md5($_POST['ps']))
{
echo "<script>alert('登录成功');</script>";
}
else
{
echo "<script>alert('密码错误');</script>";
echo "<script language='javascript'>";
echo " location='index1.html ';";
echo "</script>";
}
}
else
{
echo "<script>alert('用户名不存在');</script>";
echo "<script language='javascript'>";
echo " location='index1.html ';";
echo "</script>";
}编程语言

?>post

</body>
</html>

运行结果截图:

3、课堂测试未按时完成的缘由

 不会把输入密码时那个“."改成”*“;

4、但愿、目标以及安排

  但愿经过对软件工程概论的学习,在结课是能够本身肚子或者小组合做完成一个软件的自主研发,努力作出一个比较成功的软件来;以及在网页制做方面能够本身制做简单的小网页,合做能够完成比较有实用性的网站!

  之后在周一到周五天天抽出两个小时时间来学习相关知识或者复习老师所讲内容,或者动手进行实践操做!

相关文章
相关标签/搜索