功能描述:能够通过表单向MySQL数据库新增记录,能够表单提供关键词进行查询
index.html
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>货物销售记录</title><script src="JS/jquery-1.8.2.min.js"></script><script language="javascript" src="JS/function.js"></script><link rel="stylesheet" type="text/css" href="css/style.css"><p><strong>销售方功能模拟:</strong></p><p>登记销售记录>></p>
客户姓名 | ||
客户电话 | ||
购货日期 | ||
货物编号 | ||
货物名称 | ||
购货数量 | ||
这里显示结果
|
查询销售记录>>
选择类别:
查询值:
顾客方功能模拟:
货物验证>>
客户姓名 | * | |
客户电话 | * | |
货物编号 | * | |
index.html效果图
function.js
// JavaScript Document//插入记录$(function(){ $("#button").click(function(){ $("#insertStatus").text("正在保存,请稍候..."); //显示提醒 //获取用户值 txtUserName=$("#txtUserName").val(); txtUserTel=$("#txtUserTel").val(); txtDate=$("#txtDate").val(); txtGoodsID=$("#txtGoodsID").val(); txtGoodsName=$("#txtGoodsName").val(); txtGoodsNum=$("#txtGoodsNum").val(); //以ajax方式与后台程序交互 $.ajax({ url:'insert.php', type:'post', dataType:'html', data:{postUserName:txtUserName,postUserTel:txtUserTel,postGoodsID:txtGoodsID,postGoodsName:txtGoodsName,postGoodsNum:txtGoodsNum,postDate:txtDate}, success:function(data) { if(data==1) $("#insertStatus").text("保存成功"); else $("#insertStatus").text("保存失败"); } }) }) })// 查询全部记录$(function(){ $("#button2").click(function(){ $("#queryResult").text("正在查询,请稍候..."); $.ajax({ url:'query.php', type:'post', dataType:'json', data:{queryType:'all'}, // 设置查询类型变量,让后台程序区分是全部查询还是条件查询 //查询成功,调用函数返回结果 success:showQueryResult, //查询失败,显示提示 error:function(){ $("#queryResult").html("没有查询到结果。"); } }) }) }) // 条件查询$(function(){ $("#button3").click(function(){ $("#queryResult").text("正在查询,请稍候..."); txtField=$("#queryField").val(); txtKeyword=$("#queryKeywords").val(); $.ajax({ url:'query.php', type:'post', dataType:'json', data:{queryFields:txtField,queryKeywords:txtKeyword}, //查询成功,调用函数返回结果 success:showQueryResult, //查询失败,显示提示 error:function(){ $("#queryResult").html("没有查询到结果。"); } }) }) }) //客户验证 $(function(){ $("#button5").click(function(){ $("#validateResult").text("正在验证,请稍候..."); txtUserName=$("#txtUserName2").val(); txtUserTel=$("#txtUserTel2").val(); txtGoodsID=$("#txtGoodsID2").val(); $.ajax({ url:"validate.php", type:"POST", dataType:"html", data:{postUserName:txtUserName,postUserTel:txtUserTel,postGoodsID:txtGoodsID}, success:function(data){ if(parseInt(data)>0) //后台程序会将查询结果记录的条数返回到这里,根据此值检查是否查询到记录 $("#validateResult").html("验证成功!根据您提供的信息,我们认定为有效交易,"); else $("#validateResult").html("对不起,我们无法验证您输入的信息的有效性,验证失败。"); }, error: function(){ $("#validateResult").html("查询出错,请联系网站管理员"); } }) }) }) //隐藏查询结果 $(function(){ $("#button4").click(function(){ $("#queryResult").html(""); }) }) //显示查询结果 function showQueryResult(data) { var str="
编号 | 客户姓名 | 客户电话 | 货物编号 | 货物名称 | 货物数量 | 交易日期 | "; $.each(data,function(index,info) { str+="
"+info["ID"]+" | "+info["userName"]+" | "+info["userTel"]+" | "+info["goodsID"]+" | "+info["goodsName"]+" | "+info["goodsNum"]+" | "+info["tradeDate"]+" |
insert.php //新增记录后台程序
<?php $insertSQL="insert into tradeDetails values(null,'".$_POST['postUserName']."','".$_POST['postUserTel']."','".$_POST['postDate']."','".$_POST['postGoodsID']."','".$_POST['postGoodsName']."','".$_POST['postGoodsNum']."')";mysql_connect('localhost','root','root');mysql_query("set names utf8");mysql_select_db("test");echo mysql_query($insertSQL);?>
query.php //查询功能后台程序
<?phpmysql_connect ("localhost","root","root");mysql_query("set names utf8");mysql_select_db("test");$querySql="";if(isset($_POST['queryType'])==true) //获取查询类型,如果queyType变量存在,则说明是全部查询{ $querySql="select * from tradeDetails order by ID";}else // 否则,是条件查询{ $querySql="select * from tradeDetails where ".$_POST['queryFields']."='".$_POST['queryKeywords']."'";}$myrs=mysql_query($querySql);while($row=mysql_fetch_array($myrs,MYSQL_ASSOC)) { $arr[]=$row; }echo json_encode($arr);?>
validate.php //客户功能后台程序
<?phpmysql_connect ("localhost","root","root");mysql_query("set names utf8");mysql_select_db("test");$querySql="SELECT ID FROM tradeDetails WHERE userName = '".$_POST['postUserName']."' and userTel='".$_POST['postUserTel']."' AND goodsID ='".$_POST['postGoodsID']."'";$rs=mysql_query($querySql);$totalRows_myrs=mysql_num_rows($rs); echo $totalRows_myrs; //返回查询到的记录条数?>
====================================================================================================
效果
图1- 新增记录
图2-查询全部
图3-条件查询
图4-客户功能 失败
图5-客户功能 成功

TheSecretTokeEpingAphp-PowerEdwebSiterUnningSmoothlyShyunderHeavyLoadInVolvOLVOLVOLDEVERSALKEYSTRATICES:1)emplactopCodeCachingWithOpcachingWithOpCacheToreCescriptexecution Time,2)使用atabasequercachingCachingCachingWithRedataBasEndataBaseLeSendataBaseLoad,3)

你应该关心DependencyInjection(DI),因为它能让你的代码更清晰、更易维护。1)DI通过解耦类,使其更模块化,2)提高了测试的便捷性和代码的灵活性,3)使用DI容器可以管理复杂的依赖关系,但要注意性能影响和循环依赖问题,4)最佳实践是依赖于抽象接口,实现松散耦合。

是的,优化papplicationispossibleandessential.1)empartcachingingcachingusedapcutorediucedsatabaseload.2)优化的atabaseswithexing,高效Quereteries,and ConconnectionPooling.3)EnhanceCodeWithBuilt-unctions,避免使用,避免使用ingglobalalairaiables,并避免使用

theKeyStrategiestosiminificallyBoostphpapplicationPermenCeare:1)useOpCodeCachingLikeLikeLikeLikeLikeCacheToreDuceExecutiontime,2)优化AtabaseInteractionswithPreparedStateTemtStatementStatementSandProperIndexing,3)配置

aphpdepentioncontiveContainerIsatoolThatManagesClassDeptions,增强codemodocultion,可验证性和Maintainability.itactsasaceCentralHubForeatingingIndections,因此reducingTightCightTightCoupOulplingIndeSingantInting。

选择DependencyInjection(DI)用于大型应用,ServiceLocator适合小型项目或原型。1)DI通过构造函数注入依赖,提高代码的测试性和模块化。2)ServiceLocator通过中心注册获取服务,方便但可能导致代码耦合度增加。

phpapplicationscanbeoptimizedForsPeedAndeffificeby:1)启用cacheInphp.ini,2)使用preparedStatatementSwithPdoforDatabasequesies,3)3)替换loopswitharray_filtaray_filteraray_maparray_mapfordataprocrocessing,4)conformentnginxasaseproxy,5)

phpemailvalidation invoLvesthreesteps:1)格式化进行regulareXpressecthemailFormat; 2)dnsvalidationtoshethedomainhasavalidmxrecord; 3)


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

SublimeText3 Linux新版
SublimeText3 Linux最新版

VSCode Windows 64位 下载
微软推出的免费、功能强大的一款IDE编辑器

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)