在生成的csv文件中创建下拉列表

Is it possible to using php can we give drop-down in export csv file for sorting purpose?

I want to export csv file in which we have some sort drop down like how much usage of internet and how much duration all that kind of stuff using php

If yes will you please provide me some good links which i didn't get from google If no which is better option for this kind of csv stuff

Example :

CSV FILE :

Columns : Username | Duration(IN HRS) | Using Internet(In Mb)

Ankit    | 2:00:00          | 200
Divyesh  | 3:30:00          | 150
Bhavik   | 1:00:00          | 300

By default sorting by Duration If i am select dropdown by Using Internet Then need to show like below records

Username | Duration(IN HRS) | Using Internet(In Mb)

Divyesh  | 3:30:00          | 150
Ankit    | 2:00:00          | 200
Bhavik   | 1:00:00          | 300

No, CSV file can't have any style or functionnality like this, they are only for storage.