See below -
> --
> From: Wagner
> Sent: Friday, September 28, 2001 7:40 AM
> To: [EMAIL PROTECTED]
> Subject: Boolean operators...
>
> Hi,
>
> I'm trying to do a comparisson with boolean operators and it is not
> working...
>
> Example:
> $user1
> $user2
> $passw
I have a in an html form that passes its parameters to
a perl script. I want to be able to paste some text into the
and display that text on another page - with line breaks exactly as they
are in the text, etc.
For instance, I have a cisco router config that I am cutting and pasting
into the .
Chad,
try to set wrap=physical:
Cheers
Stephan
--
Dipl.-Chem. Stephan Tinnemeyer
Lindenallee 20
24105 Kiel
Germany
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I forgot:
you have to translate the line breaks into .
--
Dipl.-Chem. Stephan Tinnemeyer
Lindenallee 20
24105 Kiel
Germany
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I have Sambar 5.0 web server, IE 5.5, and Active Perl build 629, running on a really
slow HP vectra XM NT 4.0 SP 6.
When I run the following script:
#!c:\perl\bin\perl -wT
use CGI ':standard';
use BER;
require 'SNMP_Session.pm';
my $host = "192.168.0.1";
my $community = "public";
my $port = 161
Hi,
I'm trying to do a comparisson with boolean operators and it is not
working...
Example:
$user1
$user2
$password1
$password2 (this are the variables)...
The comparisson:
if (( $user1 ne "myself" || $password1 ne "pass1") && ( $user2 ne "yourself"
|| $password2 ne "pass2")) {
print "dfdfsaf
Well franck , I could not get you logic in the first attempt.
Genrally password are associatied with users so the comparions shoud be
if ( $user1 eq "myself" && $password1 eq "pass1") {
print " "
}
incase you need to if there "either" of user1 or user 2 then it should be
if ( $user1 eq "
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, September 27, 2001 6:46 PM
> To: [EMAIL PROTECTED]
> Subject: Ouptut shows up in DOS window
>
>
> I have Sambar 5.0 web server, IE 5.5, and Active Perl build
> 629, running on a really slow HP ve
> -Original Message-
> From: Wagner [mailto:[EMAIL PROTECTED]]
> Sent: Friday, September 28, 2001 7:41 AM
> To: [EMAIL PROTECTED]
> Subject: Boolean operators...
>
>
> Hi,
>
> I'm trying to do a comparisson with boolean operators and it is not
> working...
>
> Example:
> $user1
> $user