|
Posted by rf on 06/23/07 08:39
"Neredbojias" <neredbojias@gmail.com> wrote in message
news:Xns995788939B826nanopandaneredbojias@198.186.190.161...
> On Fri, 22 Jun 2007 12:01:24 GMT rf scribed:
>> echo "<ul>\r\n";
>> menuitem('page1','Page 1');
>> menuitem('page2','Page 2');
>> echo "</ul>\r\n";
>
> I notice you use \r\n where I typically use just \n (which seems to
> suffice.) Do you think it makes any difference?
Hang over from my real job, spitting out C++/C# code where the \r is usually
mandatory. Try sending just a \n to a printer. True, who sends stuff to a
real printer these days, but I did thirty years ago when I started to really
learn how to program :-) IBM systems back then of course with really small
numbers like system/370 model 135 (about as powerfull as a 80368).
Also many MS utilities (read: notpad which what you get from a view->source
in IE) require the \r.
It doesn't hurt the *nix systems.
--
Richard.
[Back to original message]
|