northwood Posted October 10, 2005 Posted October 10, 2005 I'm trying to import a database from an old website to work with osCommerce. My first issue is that currently I am using tabs to seperate fields. Only I'd like to use one other field so that three items in one field can be split into other fields using the ~ sign (chosen because there isn't a chance I'll have that anywhere else). The easypopulate.php file has this currently: // **** Field Separator **** // change this if you can't use the default of tabs // Tab is the default, comma and semicolon are commonly supported by various progs // Remember, if your descriptions contain this character, you will confuse EP! global $separator; $separator = "\t"; // tab is default //$separator = "~"; // tilde //$separator = ","; // comma //$separator = ";"; // semi-colon //$separator = "-"; // dash //$separator = "*"; // splat What do I need to put so that it uses the '~' tilde as well to seperate fields. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.