Go to this page on google if you have the same problem. I did not want to try to use the auto-enter cal parameter, so it only started with php ...
$var1 . char( 13 ) . $var2
Also, when pulling a value from a FileMaker field with a carriage return, you need to be careful when you put it in a variable and back into FileMaker. For instance:
To pull it into a php variable:
$variable = nl2br($record->getField("field1"));
and return it to FileMaker:
$record->setField('field1',str_replace('<br />',chr(13),$variable));
Hello
source share