On 07 Sep 2011 at 15:21, Ron Piggott <ron.piggott@xxxxxxxxxxxxxxxxxx> wrote: > Hi Everyone > > I am trying to load an HTML book into mySQL. The book was distributed with > each chapter being it’s own HTML file. > > The only way I know how to open a file is by specifying the file name. Such > as: > > $myFile = "B01C001.htm"; > $lines = file($myFile); > foreach ($lines as $line_num => $theData) { > > Is there a way PHP will open each file in the directory ending in “.htm”, > one file at a time, without me specifying the file name? You can use opendir() and readdir() to get the filenames one by one. -- Cheers -- Tim
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php