We all know that a quotation mark must have it's partner. But how will I do it if I got 3 consecutive elements that wil use up a quotation mark (PHP echo, HTML and CSS class, Javascript function)? Something like this
echo '
<tr class="table-body" onclick="showMenu('edit-user-window')">
<td> <input type="submit" class="delete-but graphic-buts" value="" /> </td>
<td> <a href="/res/doc.docx" target="_blank"> User </a> </td>
<td> Pass </td>
<td> user </td>
<td> View-Only </td>
</tr>
';
The echo's quotation mark breaks at the start of my onclick function. How do I do it?