in reply to here documents formatting
You can also try $strSQL = <<"\tEND_SQL"; but you're starting to play with fire, since some text editors covert tabs to spaces, mysteriously breaking your scripts in that wonderful "but I didn't touch anything there!" fashion.$strSQL = <<" END_SQL"; SELECT * FROM TABLE END_SQL
|
|---|