The title says everything, it detects the quotation marks in the HTML. How do I get it to not do this?
$html = fopen($videoname."/video.html", "w") or die("Unable to Play Video");
$txt = "<html><body><video width="1000" controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video></body></html>";
fwrite($html, $txt);
fclose($html);