If i use this code (see below). The <p> are replaced bij \r (not wat i want) I want to replace the <p> with a 'normal' breakline(enter)
$row_TEMP['MEMO'] = str_replace("<p>", '\r', html_entity_decode($row_TEMP['MEMO']) );
------------------------
The only thing that i want to do is: I have a array (with sql/text(blob field) that i put in a phpdocx addTable function.
$wf = new WordFragment($docx, 'document');
$wf->addTable($Array_Table_Value, $paramsTable);
$docx->replaceVariableByWordFragment(array('Array_Table_Value' => $wf), array('type' => 'block'));