相關關鍵詞
關于我們
最新文章
php實現批量上傳數據到數據庫(.csv格式)的案例
友情提示:上傳數據的文檔需要轉化為.csv格式的文檔
前端代碼:
<form name="importForm" action="import.php" method="POST" enctype="multipart/form-data"> <input type="hidden" value="import_goods" name="file"> <table cellpadding="2" cellspacing="1" class="tb"> <tbody> <tr> <td width="200">選擇批量上傳文檔:</td> <td><input type="file" name="upfilename" id="upfilename" value=""></td> </tr> <tr> <td colspan="2"> <input type="submit" name="submit" value="提交" class="btn"> </td> </tr> </tbody> </table> </form>