Jump to content

Importing Issue ’


oMIKEo

Recommended Posts

Hi,

Ive been importing all the records for a clients site into my database and ive just exported and then imported them into the clients database but its not working very well...

Its adding things like don’t when it should be a '

Any ideas if i can easily solve this?

Thanks,
Mike
Link to comment
https://forums.phpfreaks.com/topic/7217-importing-issue-%C3%A2%E2%82%AC%E2%84%A2/
Share on other sites

The data was originally in MS Word then pasted into my database via phpmyadmin.

From that the tables and data were extracted as a .sql file and imported into the clients database, again via phpmyadmin.

Any ideas how to fix the problem of those special characters.

Thanks
I found this solution on another PHP email list I'm on:
[code]<?php
     $search = array(
         '/[\x07\x95]/',
         '/\x85/',
         '/[\x91\x92]/',
         '/[\x93\x94]/',
     );
     $replace = array(
         '-',
         '...',
         '\'',
         '"',
     );
     $data = preg_replace($search, $replace, $data);
?>[/code]

Ken

Archived

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

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.