This topic is locked

CSV Export Error

6/20/2009 6:44:59 AM
PHPRunner General questions
C
christwigg74 author

Hi whenever i export to csv the following happens
Mr A Smith & Miss T Smith
is exported as
Mr A Smith &amp
Any Ideas ?

C
christwigg74 author 6/22/2009

Hi whenever i export to csv the following happens

Mr A Smith & Miss T Smith
is exported as
Mr A Smith &amp
Any Ideas ?


Problem Solved
I changed the following code on the export page.
$outstr.='"'.htmlspecialchars(GetData($row,"Full Name",$format)).'"';
$outstr.='"'.(GetData($row,"Full Name",$format)).'"';
Hope this was of help to someone