Hello
I've got a web based admin tool where users can create basic formatted text using <b>,<i> etc. I'm using a text file for the creation of the formatted text as I don't want to use MySQL from the outset as that would mean one massive table for each page (tho its looking like going that way!. )
This is how the editing works, so the user never has to edit any html there given 'text formatting options' for every bit of text they append to a text file. So buildilding the text file in chunks ie (user creates).
This is my first entry isn't it good.
Which is achieved by appending three entries to the file:
1.REGULAR text 2.BOLD text 3.REGULAR text.
Once there happy with it its included in a text area and submitted to a database.
So the trouble I'm having is giving them the option to edit their entry either as there doing it, and also once its been submitted to the database.
So I was asking if it was possible to get the deliniated entry from the database back into a text file for editing. So if its not possible to do that I'll have to go down the temportary table route which to my understanding would mean being able to create rows on the fly to accomodate however many 'chunks of text a page is'. If there is someother way of trying to do what I'm doing that you can think of please let me know, I'm not asking for the code just the method and I'll work with it from there.
Cheers for the interest and any help you can give.
John