i have a file into which i keep appending data, i want this data to be put in a table so that there is clarity for the person who sees it. can someone help me out as to how to create tables in files. using html the normal way things don't seem to work.
You will need to explain where the file is located,
what kind of data is in the file and how it is arranged,
how you are appending to the file (I am assuming you are you using PHP?)
and how you want the data arranged in the table.
ya i am using php to append my file and the file is actually a log file. right now its appended into the file as
username:
id:
i want it in the form of a table as shown below
username id
the thing is that i want to view the log file from my webpage, so i have an option view log file, and that in turn should read the file and put it in a table form and show the user.