i tried to write a template which writes sql-statements to insert into a database. so i can do a normal website, where my dvd's show up.
but i have the problem, that some " and ' are in the fields (summary or title or so)
this gives me problems with php...
i tried to replace them with " and ′ but if i replace the first sign, the second gives problems and reverse...
Code: Select all
$title = eregi_replace('"', '"', '[Key:Title]');
is there some possibility to replace ' and " direct to ′ and " in the export-process? (like it does with ä,ö,ü,/,...)
thanks
simon