亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

How to display the collected data in real time on the page?
黃小金
黃小金 2018-03-23 16:20:15
0
2
2775

The data is collected from the terminal and sent to the Internet through the communication module. The data needs to be downloaded from the Internet and displayed on the web page in real time. What knowledge do I need to learn? Are there any learning routes, learning methods, books, etc. that you would recommend?


I am a novice graduate student. I have taught myself some basic knowledge of html, css, PHP, and mySQL. Currently, I have made a customer registration login page. The next step is to pour the data into Web page, please give me some advice! Thanks!

黃小金
黃小金

reply all(1)
sky

The file is in php format

<?php
//鏈接數(shù)據(jù)庫去數(shù)據(jù)

//$arr取出的數(shù)組
?>
<!DOCTYPE?html>
<html>
<head>
<meta?charset="UTF-8"?/>
<meta?name="viewport"?content="width=device-width,?initial-scale=1.0"?/>
<meta?http-equiv="X-UA-Compatible"?content="ie=edge"?/>
<title>Document</title>
</head>
<body>
<table?border=""?cellspacing=""?cellpadding="">
<tr><th>Header</th><th>Header</th><th>Header</th></tr>
<?php??fpreach($arr?as?$k=>$value){?????????>
<tr>
	<th><?php?echo?$value[字段1]??></th>
	<th><?php?echo?$value[字段2]??></th>
	<th><?php?echo?$value[字段3]??></th>
</tr>

<?php?}??>
</table>
</body>
</html>


  • reply Thank you, I'll go research it.
    黃小金 author 2018-03-24 15:01:58
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template