I'm learning PHP from a range of different online tutorials. I'm trying to create a quiz which generates four different answers, with only one of them being correct. In this case it's answer four. This is how far I got with my code but I am having a hard time trying to print the HTML output, with me getting a T-String error.
<?php
$n1 = rand (1, 99);
$n2 = rand (1, 99);
$n3 = rand (1, 99);
$n4 = '3';
print "Answers:<br />
<form>
<input type="radio">$n1<br />
<input type="radio">$n2<br />
<input type="radio">$n3<br />
<input type="radio">$n4</p>
<input type="submit">
</form>";
?>
From my research it seems to be about the fact that I am using slashes and quotes in my print but since I am trying to print HTML I don't know how to get around it?