A method that I use that has worked quite well for me is to create a file called "functions.php" that includes scripts that get called by more that 1 page in my applications. The way you just write the code once and if you make a change here it changes site wide. Then in each page that requires access to one or more of these functions I just put an <?php include('functions.php');?> line near the top of each page. eg: In the "functions.php" page, create a function like: function getLocalTime() { $timestamp=time( ); $seconds = 6*60*60; $timestamp-= $seconds; $tz = "CST"; $localtime= date("m/d/Y H:i:s",$timestamp) ; $localdate = substr($localtime, 0,10); $localtime = substr($localtime, 11,8); return $localtime; } Then in one of my web pages, I would do something like: <?php include('functions.php'); echo getLocalTime(); ?> --- In php-objects@xxxxxxxxxxxxxxx, JIM NEELY <jimneely@...> wrote: > > I setup an "include" file.... > > Ken <ken.poyser@...> wrote: I have a file that gets the local time (not GMT) > > $timestamp=time(); > $seconds = 6*60*60; > $timestamp-=$seconds; > $tz = "CST"; > > $localtime= date("m/d/Y H:i:s",$timestamp); > $localdate = substr($localtime,0,10); > $localtime = substr($localtime,11,8); > > Currently I have the code above in about 13 files > and wondering how to have this one file > and then in the 13 files to go to this file to > do the date/time conversion > > I am wondering how to call this file to do this from > within these 13 php files > > Any assistance would be appreciated > > Thanks > Ken > > > > > > > --------------------------------- > Never miss a thing. Make Yahoo your homepage. > > [Non-text portions of this message have been removed] >