Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JNameNotTaken

    Word: Header, word wrap issue

    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...
  2. JNameNotTaken

    Escaping html tags in html mail

    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 =~...
  3. JNameNotTaken

    Net::SMTP HTML Mail Catch 22 dilema

    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...
  4. JNameNotTaken

    Outer Join or merge of some sort?

    ADDRESS( Address_ID, Street, City ) 0 A St. C1 1 B St. C1 PROPERTY( Address_ID, Prop_Details ) 0 D1 1 D2 FLAT( Address_ID, Association_Fee ) 0 AS1 HOUSE( Address_ID, Lot_Size ) 1 LS1...
  5. JNameNotTaken

    Return External Value

    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...
  6. JNameNotTaken

    Exact # of digits regular ex.

    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 =...
  7. JNameNotTaken

    CGI: File write permissions difficulty

    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...
  8. JNameNotTaken

    Disable HTML Form auto dropdown list

    Hi All Any of you who have read any of my previous posts will know that I am very much a beginner to Perl so please bare with me here. My (latest) problem is this. MS internet explorer 'remembers' what has been entered into HTML forms by default. So when you go back to the form a list of...
  9. JNameNotTaken

    CGI file path problem

    Hi All I have a Perl CGI script which generates HTML code dynamically. for example: - printHTML(); sub printHTML() { return <<"end"; <IMG SRC="my_image.gif"><BR> Some Text<BR> end } My problem is that the .gif file is not being displayed when I post the script on the (linux) server. The...
  10. JNameNotTaken

    Perl Capability Questions (Beginner)

    Hi All Sorry if these questions are irritating but I've checked FAQs and googled for ages, I just have some basic questions before I launch into learning Perl. 1. Can a Perl CGI program be used to silently send an email. E.g. a user fills in a HTML form, can the resultant data be posted to an...

Part and Inventory Search

Back
Top