Hello All
This is driving me crazy, any help would be great, please.
A header on a page with the following formatting:
Header 1, Arial(default), 16 (default)
The heading wraps to a new line but I need the second line to line up with the 'H' not the '2'.
Anybody know how to fix this?
Thanks...
Hello All
New problem today. Any help would be great, thanks.
I have a form that takes text from a user in a Text Area and sends it as part of the body of a html mail.
Firstly, I replace all the \n's with <BR>'s on the text from the text area as so:
$detailsBR = $details;
$detailsBR =~...
Cheers, kirsle you appear to be correct.
Additionally, I think the extra \n between the header and the body may have done the trick but I couldn't be certain.
In any case the following code works:
my $smtp = Net::SMTP->new('smpt.mydomain.com');
$smtp->mail( $email );
$smtp->to(...
Hello
I'm able to send mail ok using Net::SMTP but I have an issue I'm hoping sombody can please help with.
Code:
use Net::SMTP;
my $mail_body = "my html message";
my $smtp = Net::SMTP->new('smpt.mydomain.com');
$smtp->mail( $email ); #from email address
$smtp->to( $RECIPIENT_EMAIL ); #to...
I have a requirement whereby an external source will access my script in order to receive a return value in XML format.
My script will receive some data then based on that, return an XML tag with data in it.
How can a script return data to an external 'caller'?
I can print html with perl to...
Hi All
Sorry to have to ask this. but it's been driving me daft for the last few hours.
I need to verify that a scaler contains only digits and only 12 of them at that.
I've tried these (among others) to no avail:
if( $variable =~ m/\d\d\d\d\d\d\d\d\d\d\d\d/ )
if( $variable =...
Thanks KevinADC
I have been able to relax the permission to an extent, I still find that I have to allow all users write access to the file in order to let the script write to it. I can live with that I think though. I don't see how anybody could write to it without being logged into the ISP...
Hi All
I'm using windows XP ftp thing to change file permissions on a file I wish to write to from a cgi script.
The only way i can get the script to actually read and write to the file is to open all permissions.
This means that sombody can simply go to the URL and view the contents of the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.