Basically write it in HTML so I wont have to change the quotation marks every time
Use HereDoc syntax then
$html=<<<HTML
<p style="font-size:16px; color:red;">Hello world!</p>
<p>
You don't have to worry about single quotes ' or double quotes "
</p>
HTML;
6
solved Writing php in a way that allows