I'm working with OScommerce a lot and There are a lot of statements like this:
<?php echo $order->info['payment_method']; ?>
Can someone clarify what this is doing, I believe it is accessing the data from the 'payment_method' field in the "order" table of the database?
If so, not sure how to interpret a similar statement.
<?php echo $order->customer['telephone']; ?>
Thanks for any assistance.