oops, that function declaration should look like:

function println( $cTextToPrint ) {
         print( $cTextToPrint . chr(13) );
}


At 07:40 AM 1/31/01 -0700, Joe Sheble (Wizaerd) wrote:

>Write yourself a function that handles it yourself and include it in every 
>page... something such as:
>
>function println( $cTextToPrint ) {
>         print( $cTextToPrint . "<BR>" );
>}
>
>then in your pages just use println() everywhere...
>
>At 08:29 AM 1/31/01 -0600, Mark wrote:
>>I'd like my html output to be neatly written, including newlines is helpful
>>but does anyone know of a better way to output newlines than appending
>>."\n"; to every echo statement.
>>
>>-Mark
>>
>>
>>
>>
>>--
>>PHP General Mailing List (http://www.php.net/)
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>>To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
>--
>PHP General Mailing List (http://www.php.net/)
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to