06-03-2005, 06:26 AM
|
#32 (permalink)
|
|
The Wanderer
Join Date: Jun 2005
Location: London
Posts: 7
Thanks: 0
|
Quote:
|
Originally Posted by jaswinder_rana
EOT is NOTHING. you can use SoftCloud instead of EOT
all it does is
PHP Code:
echo <<<SoftCloud
Will print everything here.
No matter how long or length.
Don't have to worry about escaping quotes ' "
SoftCloud;
To find it on internet, its called HEREDOC
First rule :: starting and ending name(whatever) should be SAME
Second:: Nothing should be after <<<SoftCloud (not even space)
Third:: which i myself was not aware of, nothing should be after ending SoftCloud; (not even space)
hope that helps
|
Ahhhh i get ya :)
|
|
|
|