On Mon, May 15, 2006 4:21 am, [EMAIL PROTECTED] wrote:
> I'm currently writing a PHP page, which uses a small Perl script. But
> I
> encounter an annoying problem with endline character.
>
> A small example :
>
> $perl = new Perl();
> $perl->eval('print "toto\ntata"');
Your apostrophes in PHP don'
On 5/15/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Hello,
I'm currently writing a PHP page, which uses a small Perl script. But I
encounter an annoying problem with endline character.
A small example :
$perl = new Perl();
$perl->eval('print "toto\ntata"');
In this configuration, the HTM
?
Kelvin
-Original Message-
From: Frank M. Kromann [mailto:[EMAIL PROTECTED]
Sent: Monday, March 10, 2003 1:35 AM
To: Poon, Kelvin (Infomart)
Cc: '[EMAIL PROTECTED]'
Subject: Re: [PHP] PERL/PHP, MSSQL
Thanks,
but what can FreeTDS do? So it can connect to my AIX server and retrieve
that text file out?
Kelvin
-Original Message-
From: Frank M. Kromann [mailto:[EMAIL PROTECTED]
Sent: Monday, March 10, 2003 1:35 AM
To: Poon, Kelvin (Infomart)
Cc: '[EMAIL PROTECTED]'
Subject
Hi Kelvin,
You can use both PERL and PHP (prefered :-)).
You need to download, compile and install FreeTDS (http://freetds.org). If
you are using PHP you need to recompile it using --with-mssql. This will
enable the mssql extension. You can then create a php script to read the
text file, parse it
Hi Kelvin,
You can use both PERL and PHP (prefered :-)).
You need to download, compile and install FreeTDS (http://freetds.org). If
you are using PHP you need to recompile it using --with-mssql. This will
enable the mssql extension. You can then create a php script to read the
text file, parse it
The first line of the script had the magic incantation:
#!/usr/local/bin/perl
(or something very similar) which makes the leading 'perl' superfluous.
PHP scripts can be made into "self executing" scripts in a similar fashion
if the 1st line looks like:
#!/path/to/the/php/command/line/executable
Sorry, i didn't think of that. I still think exec('perl perl.pl'); does the
job, not exec('perl.pl');
"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
>
>
> Jurre Thiel wrote:
>
> >That doesn't make any sense and has nothing to do with Perl, since
Jurre Thiel wrote:
That doesn't make any sense and has nothing to do with Perl, since PHP will
magically convert perl.pl to 'perl.pl'.
I think perl will be magically converted to perl and pl to pl, and those
two strings concatenated
together using . inbetween will be perlpl
--
PHP Ge
That doesn't make any sense and has nothing to do with Perl, since PHP will
magically convert perl.pl to 'perl.pl'. I think you should do something
like:
Assumming you are on an Unix enviroment and Perl is installed.
"Leif K-Brooks" <[EMAIL PROTECTED]> schreef in bericht
[EMAIL PROTECTED]">news
Not good at perl, but you need to do:
Sam wrote:
I don't know what the heck this is but it works:
#!/usr/bin/perl
$ENV{LD_LIBRARY_PATH} .=":.:..:../lib";
$ENV{CLASSPATH} .= ":Verisign.jar:.";
print `javac PFProJava.java`;
print `java PFProJava test-payflow.verisignscks.com`;
How can it be do
You either need to:
1) Set multiple cookies for each index:
setCookie('session[foo]'...)
setCookie('session[bar]'...)
2) Serialize/unserialize your array.
setCookie('session', serialize($session_array) );
$session = unserialize($_COOKIE['session']);
-js
Tom Woody wrote:
Did a google and arch
12 matches
Mail list logo