Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how do i add text next to the date on my oscommerce?


jasyn

Recommended Posts

Posted

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?

Posted

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.

Posted
echo strftime(DATE_FORMAT_LONG).'<br/>';

replace with

echo .'today is:'. strftime(DATE_FORMAT_LONG).'<br/>';

 

just a concatenation.

 

Satish

 

thank you!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...