Im new to PHP, i just want to know if theres any rule in php in terms of single statement multiple lines. for example in VB.Net we uses "&_"(w/o the quote) to tell vb.net that it is a single statment and it has a continuation. is there any in php?
Heres the sample in In VB.Net
"INSERT INTO table(field1," &_
field2)VALUES(value1," &_
"Value2)"
in php= ????
It will be a big help for a newbie like me.
Thanks