PHP table, comma delimited HTML help!!!!!

Hi,

I’m massively new to this. I have a test page here

http://www.justmarriedfilming.co.uk/txttest.php

as you can see from the code below I have a html table which pulls in 3 sepearte .txt files. Am wondering if there is an easier way of doing this, using only 1 txt file and using commas to separate the text into columns??

sorry, i’m new to php!!!

cheers

<table width="90%" border="0" class="black-text-regular"> <tr> <td width="63%">Venue</td> <td width="18%">Time</span></td> <td width="19%">Date</span></td> </tr> <tr> <td class="black-text-regular"> <?php include("venue.txt"); ?> </td> <td class="black-text-regular"> <?php include("time.txt"); ?> </td> <td class="black-text-regular"> ><?php include("date.txt"); ?> </td> </tr> </table>

Sponsor our Newsletter | Privacy Policy | Terms of Service