Munch Posted February 9, 2007 Share Posted February 9, 2007 Hi guys, I am trying to get a php script to create a table from a .txt file that contains the following text: 00001,EGBB,EHAM,0930,1010,BA46,2x,90v$ I would like to make a table that looks something like this | Flight No | From | To | ETD | ETA | Aircraft | SR | Ticket | --------------------------------------------------------------- | 00001 | EGBB| EHAM | 0930 | 1010 | BA46 | 2x | 90v$ | (The text file contains flight plan infomation from a virtual airline, this is downloaded every time a new flight plan is added then uploaded to my ftp site. this text file could end up holding 100+ lines of text) Can anyone help me out with this please? I think ive given you all the info you might need but if you need anymore infomation just ask Thanks Chris Link to comment https://forums.phpfreaks.com/topic/37721-create-table-from-txt-file/ Share on other sites More sharing options...
artacus Posted February 9, 2007 Share Posted February 9, 2007 I'll get you started: fopen() will open the file fgetcsv() will read it line by line and even split your values for you. The manual will walk you thru the rest. Link to comment https://forums.phpfreaks.com/topic/37721-create-table-from-txt-file/#findComment-180486 Share on other sites More sharing options...
Munch Posted February 9, 2007 Author Share Posted February 9, 2007 thanks ive sorted that out now if ur interested and want to have a look its here Link to comment https://forums.phpfreaks.com/topic/37721-create-table-from-txt-file/#findComment-180507 Share on other sites More sharing options...
ted_chou12 Posted February 9, 2007 Share Posted February 9, 2007 do this: <table> <?php $data = file("filename.txt"); foreach ($data as $info) { $pieces = explode(",", $info); echo "<tr><td>".$pieces[0]."</td><td>".$pieces[1]."</td><td>".$pieces[2]."</td><td>".$pieces[3]."</td><td>".$pieces[4]."</td><td>".$pieces[5]."</td><td>".$pieces[6]."</td><td>".$pieces[7]."</td></tr>";} ?> </table> btw, is this some kind of game? i am really interested in it. Ted Link to comment https://forums.phpfreaks.com/topic/37721-create-table-from-txt-file/#findComment-180536 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.