Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Search the Community

Showing results for tags 'php split problem'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News and Announcements
    • News and Announcements
  • osCommerce v4.x
    • General Support
    • Migration from old osCommerce
    • Design and Templates
    • Apps / Add-ons
    • Translations
    • API and import/export
    • Marketplace integration
    • Manuals and How-to
    • Blog's discussion
  • osCommerce Online Merchant v2.x
    • General Support
    • osCommerce Online Merchant Community Bootstrap Edition
    • Add-Ons
  • Development
  • General
    • General Discussions
    • Live Shop Reviews
    • Security
    • Commercial Support Inquiries
    • Developer Feedback

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Real Name


Location


Interests


Website

Found 1 result

  1. Hi I am reaching the end of upgrading 2.2 RC2a from php 5.2 to 5.3 and have a problem sorting one of the "split" functions in a shipping module. The line of code is list($t_postcode, $local) = split('[/ -]', $postcode); Where the $t_postcode value might be TN12 8QT and the line of code is spliting the postcode so that it becomes TN12. I have tried changing it to list($t_postcode, $local) = explode('[/ -]', $postcode); and list($t_postcode, $local) = preg_split('/[/ -]/', $postcode); But neither of these examples splits the post code I would apprciate any help to fix this problem Thanks ... Dennis
×
×
  • Create New...