sourcecodeofMESData

WBOY
풀어 주다: 2016-06-07 16:04:44
원래의
1118명이 탐색했습니다.

HTMLHEADTITLETELOGS/TITLE/HEADBODY?php/* command line parameters: wget http://localhost/query.php?action=querysn=123 -O get1.html */$act=$_GET[action];/* http://localhost/query.php?action=querysn=123 */if ($act == query){$serialnumber=$_GE

<HTML>
<HEAD>
<TITLE>TELOGS</TITLE>
</HEAD>
<BODY>
<?php
	/* command line parameters:  wget "http://localhost/query.php?action=query&sn=123" -O get1.html */

	$act=$_GET["action"];
	/* http://localhost/query.php?action=query&sn=123  */
	if ($act == "query"){
		$serialnumber=$_GET["sn"];
		
		$con = mysql_connect("localhost","root","123456");
		if (!$con){
			die(&#39;Could not connect: &#39; . mysql_error());
		}

		mysql_select_db("test", $con);
		$sql = "SELECT * FROM testlogs where Serial_number=&#39;".$serialnumber."&#39;";
		$result = mysql_query($sql);
		if (mysql_num_rows($result) != "0" ){
			while($row = mysql_fetch_array($result))
			{
				echo $row[&#39;Serial_number&#39;] . "|" . $row[&#39;Mac_addr&#39;]."|". $row[&#39;OA_KEY&#39;]."\n";
			}
		}else{
			echo "No data of this serial number=".$serialnumber;
		}
		mysql_close($con);
	}
?>

<?php
	/* http://localhost/query.php?action=add&sn=123&mac=eeee&oakey=123   */
	if ($act == "add"){

		$serialnumber=$_GET["sn"];
		$macaddr=$_GET["mac"];
		$oakey=$_GET["oakey"];
		
		$con = mysql_connect("localhost","root","123456");
		if (!$con){
			die(&#39;Could not connect: &#39; . mysql_error());
		}

		mysql_select_db("test", $con);
		$sql="INSERT INTO testlogs (Serial_number, Mac_addr, OA_KEY) values (&#39;".$serialnumber."&#39;,"."&#39;".$macaddr."&#39;,"."&#39;".$oakey."&#39;)";
		if(mysql_query($sql)){
			echo "Add data Passed";
		}else{
			echo "Add data failed";
		}
		mysql_close($con);
	}
?>
</BODY>
</HTML>
로그인 후 복사

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿