I am familiar with how to import 1 text file.
$result = mysql_db_query('database_bins',"LOAD DATA local INFILE text.txt' INTO TABLE news FIELDS
But what I really need to do is import all text files in that directory.
$result = mysql_db_query('database_bins',"LOAD DATA local INFILE '*.txt' INTO TABLE news FIELDS
Will this work? If not, how can this be accomplished. Thanks guys.