随着信息化技术的快速发展,计算机应用已经进入了千家万户,随着超市商品在不断的增多,商品进销存管理上也存在着许多问题。商品数据的处理量快速增长,原本的人工管理模式已经不太适合这种形式,使用计算机可以完成数据收集、处理和分析,减少人力和物力的资源浪费。超市需要超市管理系统的建立,能为超市商品管理提供信息化管理和动态化管理,提高商品管理质量和使用效率。
在本系统的设计中,运用php设计语言,系统的数据库采用了 mysql。此次系统设计主要包括几大功能模块,这几大功能模块将超市商品管理涉及的各方面内容都考虑进去。这几大功能模块分别是系统用户管理、基础资料管理、操作员信息管理、供应商管理、商品信息管理、商品进货入库管理、商品销售管理模块。最后,经过系统需求分析和系统设计方式进行验证,结果显示,证明本设计有实用价值。从而从软件设计的角度对研究的理论,基础、系统整体布局及系统等具体设计进行了详细研究。
系统主要代码:
<?php include_once 'conn.php'; $id=$_GET["id"]; ?> <!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=gb2312" /> <title>客户信息详细</title><link rel="stylesheet" href="css.css" type="text/css"> </head> <body> <p>客户信息详细:</p> <?php $sql="select * from kehuxinxi where id=".$id; $query=mysql_query($sql); $rowscount=mysql_num_rows($query); if($rowscount>0) { ?> <table width="90%" border="1" align="center" cellpadding="3" cellspacing="1" bordercolor="#00FFFF" style="border-collapse:collapse"> <tr> <td width='11%'>姓名:</td><td width='39%'><?php echo mysql_result($query,0,xingming);?></td> <td width='11%'>性别:</td><td width='39%'><?php echo mysql_result($query,0,xingbie);?></td></tr><tr> <td width='11%'>出生日期:</td><td width='39%'><?php echo mysql_result($query,0,chushengriqi);?></td> <td width='11%'>联系电话:</td><td width='39%'><?php echo mysql_result($query,0,lianxidianhua);?></td></tr><tr> <td width='11%'>住址:</td><td width='39%'><?php echo mysql_result($query,0,zhuzhi);?></td> <td width='11%'>备注:</td><td width='39%'><?php echo mysql_result($query,0,beizhu);?></td> </tr><tr> <td colspan=4 align=center><input type=button name=Submit5 value=返回 onClick="javascript:history.back()" style='border:solid 1px #000000; color:#666666' /> <input type="button" name="Submit2" onclick="javascript:window.print();" value='打印本页' style='border:solid 1px #000000; color:#666666' /></td></tr> </table> <?php } ?> <p>&nbsp;</p> </body> </html>
<?php include_once 'conn.php'; header("Content-Type: application/vnd.ms-execl"); header("Content-Disposition: attachment; filename=地一些单位.xls"); header("Pragma: no-cache"); header("Expires: 0"); ?> <!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=gb2312" /> <title>客户信息</title> </head> <body> <p>已有客户信息列表:</p> <table width="100%" border="1" align="center" cellpadding="3" cellspacing="1" bordercolor="#00FFFF" style="border-collapse:collapse"> <tr> <td width="25" bgcolor="#CCFFFF">序号</td> <td bgcolor='#CCFFFF'>姓名</td> <td bgcolor='#CCFFFF'>性别</td> <td bgcolor='#CCFFFF'>出生日期</td> <td bgcolor='#CCFFFF'>联系电话</td> <td bgcolor='#CCFFFF'>住址</td> <td width="120" align="center" bgcolor="#CCFFFF">添加时间</td> </tr> <?php $sql="select * from kehuxinxi order by id desc"; $query=mysql_query($sql); $rowscount=mysql_num_rows($query); for($i=0;$i<$rowscount;$i++) { ?> <tr> <td width="25"><?php echo $i+1; ?></td> <td><?php echo mysql_result($query,$i,xingming);?></td> <td><?php echo mysql_result($query,$i,xingbie);?></td> <td><?php echo mysql_result($query,$i,chushengriqi);?></td> <td><?php echo mysql_result($query,$i,lianxidianhua);?></td> <td><?php echo mysql_result($query,$i,zhuzhi);?></td> <td width="120" align="center"><?php echo mysql_result($query,$i,"addtime");?></td> </tr> <?php } ?> </table> </body> </html>