vote up 0 vote down star

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.

flag
Why turn it into "a semblance" of html? Why not use full html? – McAden Nov 23 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 at 20:51

2 Answers

vote up 1 vote down check

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|flag
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 at 20:48
Hmmm I think you should stick with saving it to text or xml files, then. – peter p Nov 23 at 20:52
I actually like the idea of using XML, thanks! :) – Nathan Adams Nov 23 at 21:19
vote up 0 vote down

In the future, when you allow people to update their bios, I'm guessing you won't want people to update each other's bios. Therefore it's not going to buy you anything to make the bios into non-functional forms as you propose (with the idea of adding functionality for updates later), as you will be wanting to use a different path (with some kind of authentication added) for doing the updates.

Given this, I'd just type the bios into the HTML for now. Make sure to use the same HTML structure for every page, so that later, when you do switch to a database-driven approach (and you will) you can more easily turn it into a dynamic page.

link|flag
Sorry, I must have been a little unclear - I meant create the forms to help me format the data to spit out HTML that I just copy and paste. – Nathan Adams Nov 23 at 20:56

Your Answer

Get an OpenID
or
never shown

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