I am currently using this line of code:-
$fp = fopen ('pod.csv', 'r');
to read a csv file, my question is, is it possible to use a wild card in stead of a specific file name example *.pod???
The file name changes every day and i am sick of having to change it to pod so my script works! cheers!
$fp = fopen ('pod.csv', 'r');
to read a csv file, my question is, is it possible to use a wild card in stead of a specific file name example *.pod???
The file name changes every day and i am sick of having to change it to pod so my script works! cheers!