So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By potz
#70609 Hello,

Newbie problem...

The compiler say excepted ')' before http ?
Code: Select allclient.println("<i><a href="http://google.ch">google.ch</a></i><br>");


Thanks
User avatar
By andre_teprom
#70614 You have to add a scape character righ before the " symbol within argument, otherwhise compiler will expect the string closing structure (" ")
User avatar
By QuickFix
#70698 What Andre means is this:
Code: Select allclient.println("<i><a href=\"http://google.ch\">google.ch</a></i><br>");