Can I put a formfeed in a perl cgi ?
I've tried print "\f" or something like but I can't force a new page.
Can someone help me ?
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Can I put a formfeed in a perl cgi ?
I've tried print "\f" or something like but I can't force a new page.
Can someone help me ?
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Gary Fung a écrit :
>
> Hi,
>
> I have a Perl program using DBI. I don't know why it will cause error when I use
>"GROUP BY..." in SQL "SELECT" statements.
>
> My coding is similar as:
>
> $value2 = $dbh->prepare("SELECT page FROM $Table
>
> GROUP BY page") || die "Couldn't add record, ".$
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 {
Ciaran Finnegan a écrit :
>
> Hi all, first post, so please be nice.
>
> I've got a simple sockets server running
>
> $local = IO::Socket::INET->new(Proto=>"tcp", LocalPort=>"23", Listen=>"1")
> or die "Can't open Socket\n";
>
> $remote = $local->accept;
>
> $remote->autoflush(1);
>
> I'm re
sachin balsekar a écrit :
>
> hi joyce,
>
> i would suggest you use PHP for the same...even client side validation
> using javascript could help...but if you need to compare with
> databases..you cud use php itself and pass the parameters to the same
> page ($PHP_SELF) and get things working...
Octavian Rasnita a écrit :
>
> Hello all,
> I am a new member. please tell me what is used for the following line in a
> script:
>
> use strict;
>
> I saw that if I use it, this make sometimes my scripts to have errors and
> without it, they works.
> Thanks!
> Teddy,
> My dear email address is
Is it possible to include a perl-cgi in a php_file ?
In a php file I dynamicaly calculate a png image. Having installed
Perl-Magick, I want to calculate the signature of that image using a
perl-cgi. Is this possible ? How must I do ?
Thanks for response ...
--
To unsubscribe, e-mail: [EMAIL PROT
Rich Fernandez a écrit :
>
> It all started out as a simple script to rename some files.
> Now I can't find my way out!
>
> I have several hundred files that are named like this:
> 'ENDPNA.PROD.HRBANS(EDIFACT)'
>
> Note that the file name includes single ticks, dots, and parens.
>
> Here's wha