Formfeed in html (perl/cgi)

2003-01-10 Thread dhoubrechts
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]

Formfeed in html (perl/cgi)

2003-01-10 Thread dhoubrechts
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]

Re: Why can't use SQL "GROUP BY..."?

2003-01-09 Thread dhoubrechts
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, ".$

using \n in a cgi script

2002-12-31 Thread dhoubrechts
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 {

Re: /r/n : this is probably an embarassingly easy question.

2002-05-14 Thread dhoubrechts
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

Re: php and perl

2002-02-25 Thread dhoubrechts
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...

Re: use strict

2002-02-05 Thread dhoubrechts
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

A perl-cgi in php ?

2001-12-27 Thread dhoubrechts
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

Re: Renaming UNIX files

2001-10-31 Thread dhoubrechts
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