From: dhoubrechts <[EMAIL PROTECTED]>
> Every time I want to use a perl script as a cgi the "\n" ending the
> phrases doesn't make it going at the beginning of the next line. Why ?
> Several script coming from Perl in Action (O'Reilly) have those "\n"
> ending those phrases. Here are some lines coming from one of them :
> sub document_de_garde {
>     my $actif = shift;
>     return unless $actif;
> 
>     print "<H1>Salut\&nbsp;!</H1>\n";
>     print "Bienvenue dans notre magasin d'habillement\&nbsp;!\n";
>     print "Faites votre choix dans le menu ci-dessous.\n";
> 
>     menu_boutique();}

Your CGI creates (or better should create) HTML. How would you expect 
this "HTML" to be displayed?

        <H1>Salut&nbsp;!</H1>
        Bienvenue dans notre magasin d'habillement&nbsp;!
        Faites votre choix dans le menu ci-dessous.

If you want to insert a linebreak in HTML you have to use <BR> and if 
you want something to be a paragraph you should enclose it in 
<P>...</P>.

Jenda
===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to