我有一个包含用户和打印页面的表格,如下所示:
user | pages
---------------
maria | 5
helen | 6
maria | 7
nick | 10
nick | 3
nick | 6
我想数一数 nick, helen, maria 打印了多少页。我尝试了一些方法,但我没有得到正确的页数。
有任何想法吗?
到目前为止,我一直在使用复制/粘贴将 csv 文件保存在特定文件夹中,现在我试图让用户选择自己上传。这是我的 html 和 php 文件的一部分。
<form action="data.php" method="post" enctype="multipart/form-data">
<label for="file"> </label>
<input type="file" name="file" id="file" />
</br></br> <input type="submit" value="Load data file into database"
name="button1"/>
</form>
数据.php
<?php
$file_name=$_FILES["file"]["name"];
$file_type=$_FILES["file"]["type"]; echo"type:".$file_type;
$destination="D:\xampp\mysql\data\readcsvdb";
if($file_type!='text/csv')
{
echo "Please the input file should be a .csv file";
}
else
move_upload_file($file_name,$destination);
connect_db();
//Fill the table log of readcsv database with the csv's data
$q="LOAD DATA
INFILE '$file_name' INTO TABLE log
FIELDS TERMINATED BY ','
LINES TERMINATED BY \"\n\"
IGNORE 2 LINES
(time,user,pages,copies,
printer,doc_name,client,paper_size,language,height,width,duplex,grayscale,size)";
mysql_query($q) or die(mysql_error());
--------------------- 我收到一个错误:type:application/vnd.ms-excelPlease the input file should be a .csv fileFile 'D:\xampp \mysql\data\readcsvdb\papercut-print-log-2012-10.csv' 未找到(错误代码:2)