The php code for the shopping cart creates an Order ID number. I would like to shorten the number generated. Does anyone know where this is located in the php code?
Thanks
Order ID number
- Patrik iden
-
- Posts: 479
- Joined: Wed Mar 24, 2010 9:07 pm
- Location: Sweden
Re: Order ID number
Hi i think it's this code in the thankyou.php page. It starts on line 27
// create unique order id
$orderid = strtotime("now").$_SERVER['REMOTE_ADDR'];
$orderid = str_replace(".", "", "$orderid");
I dont know exactly how to chang it, just try somthing.
// create unique order id
$orderid = strtotime("now").$_SERVER['REMOTE_ADDR'];
$orderid = str_replace(".", "", "$orderid");
I dont know exactly how to chang it, just try somthing.