I'm outputting form content into a csv file. If a comma is used in one
of the fields, however, it will interpret to go to next column. Is there
a workaround? Thanks.

$fp = fopen('my.csv', 'a');
$content = "$var1,$var2,$v ar3...
fwrite($fp,$con tent);...