jasyn Posted December 8, 2007 Posted December 8, 2007 so inside my footer.php i know this is the line that shows the date echo strftime(DATE_FORMAT_LONG).'<br/>'; with my settings from english.php that gives me for example: Saturday - December 6, 2007 i want to place text before it so it looks like Today is: Saturday - December 6, 2007 how do i go about doing that?
satish Posted December 8, 2007 Posted December 8, 2007 echo strftime(DATE_FORMAT_LONG).'<br/>'; replace with echo .'today is:'. strftime(DATE_FORMAT_LONG).'<br/>'; just a concatenation. Satish Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does.
jasyn Posted December 8, 2007 Author Posted December 8, 2007 echo strftime(DATE_FORMAT_LONG).'<br/>';replace with echo .'today is:'. strftime(DATE_FORMAT_LONG).'<br/>'; just a concatenation. Satish thank you!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.