I want to set my web page so it updates once a minute. The string you send is .
The double quotes are creating a compiler error. The line that causes the error is "client.print("");"
What is the proper way to send this string?
Jim
I want to set my web page so it updates once a minute. The string you send is .
The double quotes are creating a compiler error. The line that causes the error is "client.print("");"
What is the proper way to send this string?
Jim
you have to use an escape character
"this is a string with a quotation mark \" in it"
you have to use an escape character
Or use a single quote ' in the html instead of the double quote " .
Osgeld:
you have to use an escape character"this is a string with a quotation mark \" in it"
I tried that,but I got the same error as before.
zoomkat:
Or use a single quote ' in the html instead of the double quote " .
Did not know single quotes would be accepted. Will try this tomorrow! Thanks to you both for responding!
Jim
I tried that,but I got the same error as before.
Post ALL of your code AND the error messages.