View Single Post
  #4 (permalink)  
Old 07-13-03, 06:59 AM
tai fu's Avatar
tai fu tai fu is offline
me
 
Join Date: Jul 2003
Location: Greece
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
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...
__________________
let my source be on your side...
<a href="http://www.programersguild.com">Programer's Guild</a><a href="http://gcf.linuxserver.at">Gnome Code factory
</a>

Last edited by tai fu; 07-13-03 at 07:01 AM.
Reply With Quote