Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的项目中,RFID 标签由阅读器读取,信息存储在文本文件中。我希望将此文本文件上传(或以某种方式复制)到 apache 服务器中的 phpmyadmin,以便我可以进行进一步处理并在网站上显示结果。我该怎么做?
读取文本文件并制作和数组,您使用循环将其导入 phpmyadmin。
<?php $file_name = "filename.txt"; $lines = file($file_name); foreach($lines as $line) { $sql_query=mysql_query("INSERT INTO table_name(column1) VALUES ('$line')"); } ?>