Hello again...
Ok, this is a database question: My php skills are at very basic level, so I will try to use whatever is at my disposal:
Let's say you want to make two installations of two different baker systems (1 for games and 1 for videos for example).
I install one database and one user for them both with the exception of table perfix (let's say wb1_table and wb2_table).
until now everything should work perfectly fine... two sites share the same user and same tables.
Now what I want to do is to show, lets say, the news of site 2 on site 1.
$mod_query = $database->query("SELECT title, link, published_when FROM ".TABLE_PREFIX.
Now... how do I tell it to select it from a different table (wb2_table) instead of the current (wb1_table)?
The main idea of this whole thing is to create a portal from many sites that will share identical design (I assume no one tried that before, maybe it would be a good idea to try and do so...) The main site should hold the latest info of his child sites.
An example:
I have
www.mysite.com which holds the latest news and pictures from
www.mysite.com/movies and
www.mysite.com/games and
www.mysite.com/food - which are 4 totally different sites.
Hope I'm in the right direction...