I believe this is easy question for an PHP programmer!
I am converting some applications from ASP to PHP and I am wondering how to achieve something like this in PHP:
Response.write "How to " & _
"brake long string " & _
"into several lines?"
Response.write in ASP is equal to print/echo in PHP.
In ASP "& _" means that string will be continued in the next line.
How can I do this using print/echo?
Thanks.
I am converting some applications from ASP to PHP and I am wondering how to achieve something like this in PHP:
Response.write "How to " & _
"brake long string " & _
"into several lines?"
Response.write in ASP is equal to print/echo in PHP.
In ASP "& _" means that string will be continued in the next line.
How can I do this using print/echo?
Thanks.