Here it is how i "dream" it..
Put 4 .php files with your info , like this:
<?php
$contentbg = 'something';
$...... = ...;
...
...
?>
then when you want to retrieve the info just include it.. and then when you want to change it :
f= 'directory/file.php';
fopen...
fwrite("<?php $contenbg =' ".$newcontentbg." '; blabla ?>");
...
...
(where $newcontentbg will be the new data iserted)
Hope you understood...
