hi guys, i wanna make a multilingual site that will store all the content in a DB for each language, i want it easy to edit for other persons using a admin panel, that is why i want to use a DB.
The thing that i need to retrive data from the DB and insert it in to array.
and in DB i wanted to do it like this:
|++ID++|++++VAR++ |+++++++VAL+++++++|
|++1++ |+++title+++ |++Welcome to my site++|
|++2++ |++content++ |++some content+++++++|
When i get this from the DB i want it to put it all in array like this:
[php] array( ‘title’ => ‘Welcome to my site’, ‘content’ => ‘some content’);[/php]