Fri Mar 30, 2007 9:25 pm
Replies: 3
Views: 14897

sub compArray
# compare two arrays
# use: compArray(\@one,\@two)
# returns 1 for same 0 for different
# stupid obfuscated version
# optimised for speed - no local vars
{
i ...

Fri Mar 18, 2005 1:49 am
Replies: 4
Views: 13905
Perl is NOT particular about permissions. Paths, somewhat, no more than anything else.

That being said your Web Server may refuse to run the perl script without the correct permissions.

Tue Feb 15, 2005 10:30 pm
Replies: 3
Views: 10109
I agree - somewhat. It ALL depends on the interface for MSWORD. For all we know it may be easiest to use the localities functions and write it as a quick VB macro. Until we know the interface we are ...

Tue Feb 15, 2005 10:24 pm
Replies: 1
Views: 7387
First of all.


#!/usr/local/bin/perl
# example from GD Documentation
use GD;
use GD::Graph::bars;
use Data::Dumper;
$XSIZE = 800;
$YSIZE = 600;
$GTITLE = "Test ...

Tue Feb 15, 2005 8:17 pm
Replies: 3
Views: 10109
Shocked Wow , fist of all you would need to see what the MS Word interface is for such an interface; once you have that then maybe we can talk. But I would agree you would, most likely, need to wrap ...

Mon Nov 22, 2004 4:35 am
Replies: 2
Views: 10688
A built in perl module is cgi.pm

Example:
use CGI qw(:standard);

print header(),start_html('My Title');

print qq(<H1>Some HTML code here</H1>),end_html();

Fri Sep 03, 2004 9:15 pm
Replies: 4
Views: 9574
Garbled by the forum

You need to put code in the "Code" tages.....just select the stuff you want to be "code" and then press the "Code" button above

Thu Sep 02, 2004 3:50 pm
Replies: 4
Views: 9574
Absolutely man. Maybe a little more information is in order here.

Basic form

<HTML><HEAD><TITLE>My Form</TITLE></HEAD>
<BODY>
<H1>My Form</H1> ...

Wed Sep 01, 2004 10:43 pm
Replies: 1
Views: 8415
#!/usr/bin/perl
#################################
# We will be adding code here #
# will probably look like: #
# use DBI;
#################################
use strict;
############## ...

Fri Aug 27, 2004 10:17 pm
Replies: 1
Views: 7095
I don't have enough to go on to debug this.

Can you post the minimum script that will reproduce the error - and post the entire script?

Maybe a simple script that sends and email and then prints ...

Mon Aug 16, 2004 2:54 pm
Replies: 4
Views: 10881
Hi. The good folks at Hostmysite may be able to help you debug the problem. Try sending the problem with the domain name and how to reproduce the problem to support@hostmysite.com. They have a bunch ...

Tue Aug 03, 2004 11:26 pm
Replies: 3
Views: 10665
Not quite the same. The OBJECT tag creates an iframe withing the document. This is essentially a whole new embedded web browser. Not only CAN you put a complete HTML document in - YOU MUST. Style s ...

Wed Jul 28, 2004 2:53 am
Replies: 3
Views: 10665
Oh - don't forget to print a content-type is using it as a perl script:
#!/usr/bin/perl
use CGI ':standard';
use mhsTemplate;
print header();
my %moo = ('system'=>'Groovy', 'ti ...

Wed Jul 28, 2004 2:32 am
Replies: 3
Views: 10665
I have been asked a couple of times how to have perl just do some search and replaces in an html document. So that you can make your html in dreamweaver or something and put in a code for the "dynami ...

Wed Jul 28, 2004 1:08 am
Replies: 2
Views: 10098
My fault -

sub compArray
# compare two arrays
# use: compArray(\@one,\@two)
# returns 1 for same 0 for different
# stupid obfuscated version
# optimised for speed - no local vars
...
Page 1 of 2
All times are GMT