We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is:
docx with table with 2 rows
no error when generate but not opened docx
Please help provide information about the failure.
Please provide a code sample that reproduces the issue.
<?php require __DIR__ . '/vendor/autoload.php'; $phpWord = new \PhpOffice\PhpWord\PhpWord(); $section = $phpWord->addSection(); \PhpOffice\PhpWord\Shared\Html::addHtml($section, '<table><tr><td>111</td><td>1</td><td>222</td><td>333</td><td></td></tr></table>'); //this works \PhpOffice\PhpWord\Shared\Html::addHtml($section, '<table><tr><td>111</td><td>1</td><td>222</td><td>333</td><td></td></tr><tr><td>111</td><td>1</td><td>222</td><td>333</td><td></td></tr></table>'); //this not works ``` ### Context * PHP version:7 * PHPWord version: 0.14
The text was updated successfully, but these errors were encountered:
the problem was in ampersand #401
Sorry, something went wrong.
No branches or pull requests
This is:
Expected Behavior
docx with table with 2 rows
Current Behavior
no error when generate but not opened docx
Failure Information
Please help provide information about the failure.
How to Reproduce
Please provide a code sample that reproduces the issue.
The text was updated successfully, but these errors were encountered: