Jump to content

? About Windows based servers


Demonic

Recommended Posts

Different operating system families have different line-ending conventions. When you write a text file and want to insert a line break, you need to use the correct line-ending character(s) for your operating system. Unix based systems use \n as the line ending character, Windows based systems use \r\n  as the line ending characters and Macintosh based systems use \r as the line ending character.
Link to comment
Share on other sites

[quote author=Demonic link=topic=118962.msg486581#msg486581 date=1166351038]
When I test some of the scripts on my Os from the PHP manual site It seems that the \n doesn't work properly? So I have to use the [code]<br />[/code] is there a reason of this?
[/quote]
Are you running the script in the browser which outputs html with new line characters? Example:

[code=php:0]<?php

echo "hello \n world";

?>[/code]


When you view that in the browser you get 'hello world' instead.

If you are then the browser will ignore these characters, however if you look in the source you'll see they are there. Instead you will need to use the html equivalent ([nobbc]<br />[/nobbc]) in order for a line break to appear on the page.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.