up vote 0 down vote favorite
share [g+] share [fb]

I have gotten a project on my desk. It involves updating the bios for a bunch of people, however, my boss does not want into a database (I think that would be the best solution but lets not go there). Although, he never said anything about flat files! :)

So, my solution would be to create a PHP page with some form elements with like "Education" and a text area for it, "Awards" and a textarea ect. and just turn the plaintext into a semblance of HTML.

I was wondering if anyone had any other better ideas?

The formats look similar to:

[center]
name
address[/center]

education: blah blah blah

Awards: blah blah

Edit 1: Eventually we will want people to be able to update their own bios.

link|improve this question

67% accept rate
Why turn it into "a semblance" of html? Why not use full html? – McAden Nov 23 '09 at 20:43
I use a template system so all I really need to do is turn the newlines to line breaks and turn certain symbols into HTML code. – Nathan Adams Nov 23 '09 at 20:51
feedback

1 Answer

up vote 1 down vote accepted

It depends on what is going to happen with the data, I'd say. What is the purpose? Just displaying it on the very same web page? I.e. a very minimalistic wiki? There are several compact wiki implementations out there, without database also, perhaps one of the might suit your needs?

EDIT: Some Wikis compared

link|improve this answer
Well, we have already created our own custom system in PHP using the layout that was given to us so all we have to do is plug in data (HTML). For the template system we are using smarty. I guess the question is more what would be the easiest, yet best, way to get the bios into the system yet allow for future expandbility. – Nathan Adams Nov 23 '09 at 20:48
Hmmm I think you should stick with saving it to text or xml files, then. – peter p Nov 23 '09 at 20:52
I actually like the idea of using XML, thanks! :) – Nathan Adams Nov 23 '09 at 21:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.