Re: output pushing

2002-09-09 Thread tommy
Is this what your after: $|++; # put this near the top of your script HTH, TommyGun. -Original Message- >From : Jimmy George <[EMAIL PROTECTED]> To : Hytham Shehab <[EMAIL PROTECTED]> CC : [EMAIL PROTECTED] : 09 September 2002 08:43:10 Subject : Re: output pushing Hello Hytham and w

Best CGI method? WRT apache cgi-cache...

2002-07-28 Thread tommy
I have written a small perl prog which does something similar to PHP and the like, it reads HTML files and replaces 'markers' with values, objects and stuff to complete the web page. The thing is I have several (and more to come) pages to apply this method to, the reason I am going about it th

Best CGI method? WRT apache cgi-cache...

2002-07-28 Thread tommy
I have written a small perl prog which does something similar to PHP and the like, it reads HTML files and replaces 'markers' with values, objects and stuff to complete the web page. The thing is I have several (and more to come) pages to apply this method to, the reason I am going about it th

RE: Running CGIs offline

2002-07-23 Thread tommy
Not sure what you're after, but to run CGI's offline, you can just: 1) Install a Perl distribution (Indigo Perl or Active Perl are simple) 2) Whack Apache on your box (comes as binary for most OS's) - I found the Bindows version simple to install and run. - Just tell it where your perl in

What a CGI.pm state I'm in...

2002-03-16 Thread tommy
Having avoided CGI.pm for a long while, as I like my coding to look just right, I'm just getting to grips with its state-flow. But these have me stumped (well a dodgy LBW call): 1) Basically I have n + (5 or 6) texstfields to fill, initially from a file which works fine. Then the user makes c

RE: [CGI] Hide Source?

2001-12-21 Thread Tommy Butler
.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> the key word here being 'PUBLIC'. -Tommy Butler, consultant Atrixnet, for Internet Business Software http://atrixnet.com 2200 North Lamar Suite 307 Dallas, TX 75202 -- Visit the

Re: “\n“ in Perl

2001-12-05 Thread tommy
This is an HTML issue really, replace the \n with or encapsulate the whole textual content of your page in tags. I recommend the first option. Take a look at your page-source in the browser, when you've loaded the page.. Tom Norwood. -Original Message- >From : [EMAIL PROTECTED] To :

RE: [CGI] Re: Program dilemma

2001-12-01 Thread Tommy Butler
: -Original Message- : From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf : Of Tommy Butler : Sent: Friday, November 30, 2001 4:31 PM : To: Andre` Niel Cameron; [EMAIL PROTECTED]; [EMAIL PROTECTED] : Cc: [EMAIL PROTECTED] : Subject: RE: [CGI] Re: Program

RE: [CGI] Re: Program dilemma

2001-12-01 Thread Tommy Butler
: -Original Message- : From: Tommy Butler [mailto:[EMAIL PROTECTED]] : Sent: Friday, November 30, 2001 4:26 PM : To: [EMAIL PROTECTED]; Andre` Niel Cameron; [EMAIL PROTECTED]; : [EMAIL PROTECTED] : Cc: [EMAIL PROTECTED] : Subject: RE: [CGI] Re: Program dilemma

RE: [CGI] Re: Program dilemma

2001-12-01 Thread Tommy Butler
rse, there are other items in %PlayerData which you don't want in the final two character-deliminated strings you create. push ( @Joiner, $ReadData[3], values(%PlayerData) ); $PlaceHolder = join(":", @Joiner);

RE: [CGI] Re: Program dilemma

2001-12-01 Thread Tommy Butler
ed'} ); $PlaceHolder = join(":", @Joiner); $tempdisplay = join(", ", @Joiner); -Tommy Butler, consultant Atrixnet, for Internet Business Software http://atrixnet.com 2200 North Lamar Suite 307 Dallas, TX

NOT: very funny...

2001-08-08 Thread tommy
disgrace, I thought better of him than that. Recommending that to any newbie would not just be a completely un-productive waste of time, but would probably have a negative effect. Don't bother replying to the group on this subject, just have a tommy tank and move on to something u

Re: Do I use fork() for this?

2001-07-19 Thread tommy
I'm not sure exactly what 'auto reap' means? Not being a Unix-ian, coming from DOSland, makes my life quite difficult when it comes to understanding Unix. Cheers again, TommyGun. www.y2kdiary.com -Original Message- >From : Pierre Smolarek <[EMAIL PROTECTED]> To : [EMAIL PROTECTED] CC :

Re: Do I use fork() for this?

2001-07-19 Thread tommy
Sounds a bit complicated, for the beta1 version, but I may move to something like this as my confidence grows. Is the 'deamon script' a purely server-side app? This is a bit of a prob at them moment as only have FTP for live server and my test box is in the early stages of dementure. Would this

Do I use fork() for this?

2001-07-19 Thread tommy
Hello all, I'm currently trying to put a little "search engine" together for a small web site, basically searching through a bunch of files for matching keywords. As I want a Progress Page while the script is doing its work, I show a page while the script is searching (had to use $| to achieve) a