Arduino Webserver

So I'm using the Web_Authentication example. It works fantastic, I was customizing it, and wanted to display a google form. Here's an example of showing html:

P(helloMsg) = "

Hello Forums

";
server.printP(helloMsg);

I want to display code using iframe. Like this but there are multiple sets of quotes. This messes up the quotes for the line of code. It all turns grey.
""

Oh, just use a back slash on each quote inside the outermost set of quotes.

string1[]="This is "Fantastic"!";

I got it, thank you. Good to know. :smiley:

In HTML you can use single quotes in place of double quotes so you can get away with just single quotes and use double quotes to delimit the whole string in Arduino code.