從終端收集到數(shù)據(jù),透過(guò)通訊模組發(fā)送到網(wǎng)路上,需要從網(wǎng)路上將數(shù)據(jù)下載下來(lái),並即時(shí)顯示在網(wǎng)頁(yè)上,請(qǐng)問(wèn)需要學(xué)習(xí)哪些知識(shí)?有沒(méi)有學(xué)習(xí)路線或?qū)W習(xí)方法、書籍等推薦?
本人研究生小白,自學(xué)了html、css和PHP、mySQL的一些基本知識(shí),目前做出了客戶註冊(cè)登入頁(yè)面,下一步要將資料倒進(jìn)網(wǎng)頁(yè),請(qǐng)各位大神不吝賜教!謝謝!
檔案是php格式
<?php //鏈接數(shù)據(jù)庫(kù)去數(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>