Is This A Good Structure For What I Am Trying To Achieve With The

Is This A Good Structure For What I Am Trying To Achieve With The

am 16.01.2008 14:40:34 von adam.timberlake

hello everybody

i have been reading the article below in case you are wondering, but i
have myself a question about how good the structure really is, and if
there are any better ways to do this.

article: http://www.talkphp.com/vbarticles.php?do=article&articleid=4 6

i do like how that site has done it but as i dont know alot about php,
i cant tell whether its a good solution or not, so could somebody
please tell me if it is ?? if it is accepable then i shall it :)

thank you and good night!

Re: Is This A Good Structure For What I Am Trying To Achieve With The

am 16.01.2008 17:11:31 von gforce

On Jan 16, 8:40=A0am, adam.timberl...@gmail.com wrote:
> hello everybody
>
> i have been reading the article below in case you are wondering, but i
> have myself a question about how good the structure really is, and if
> there are any better ways to do this.
>
> article:http://www.talkphp.com/vbarticles.php?do=3Darticle&a rticleid=3D46
>
> i do like how that site has done it but as i dont know alot about php,
> i cant tell whether its a good solution or not, so could somebody
> please tell me if it is ?? if it is accepable then i shall it :)
>
> thank you and good night!

In the past, I've done similar work just instead of using an XML file
I would use a database with a similar type setup. The advantage of
the XML file is that it's way easier to get it translated since you
don't have to build an interface to the database to get it
translated. The downside that I see would be performance. Having to
parse that XML file for every page rendered wouldn't be the best
performer.

George