Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

insert date order in invoice.php


bkiani

Recommended Posts

Hello
I was in my invoice indicating the date of the order

 

I added this code in (invoice.php) file

 

<td class="main"><strong><?php echo TEXT_DATE_ORDER_CREATED; ?></strong></td>
        <td class="main"><?php echo $order->info['date_purchased']; ?></td>

 

Gregorian date to be inserted

But do not know how I turned to the jalali date

 

using 2.3.4 ver

 

please help me

Link to comment
Share on other sites

If $order->info['date_purchased'] is a string with a Western (Gregorian) format date, and you want to display it as Jalali format, you would have to find a conversion routine and add it to your code (both the function and wrapping a call to this function around that string). http://www.phpclasses.org/package/6733-PHP-Convert-dates-between-Gregorian-to-Jalali-formats.html might be useful to you. I don't think there's anything built in to PHP to directly do such formatting or conversion, but it wouldn't hurt to do a quick search.

 

Keep in mind that if you have customers outside Iran/Afghanistan who might be using your page and would prefer Gregorian dates, to make the conversion conditional on some sort of switch.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...