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 SkipVought 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. andycruce

    Overwriting in HTML

    I can successfully direct output of perl code to create HTML pages. What I would like to do is periodically rewrite an area of the screen while my perl code is executing. An example of how this might be done in another language would be to write the data then write a number of backspaces and...
  2. andycruce

    Command Line Perl and mySQL database interface under XP

    I have installed active state perl 5.6 and have been using it with Perl Builder 2 to develop web applications. I am now moving the next state of my development where I will be relpacing a flat file data base with a realtional data base, mySQL. I have successfully installed mySQL on my windows...
  3. andycruce

    MIME::Lite Question

    I am trying to use MIME::Lite to send attachments to a message generated in perl. The code is below: $msg = MIME::Lite->new( From =>"$adminmail", To =>"$rec[$em_ptr]", Subject =>"$subject&quot...
  4. andycruce

    Help on .htaccess

    I have been using .htaccess on a web site and have just ported the software to a new site. I install the following .htaccess file in the directory I want to protect: AuthUserFile /home/andy/public_html/BaseDir/.htpasswd AuthGroupFile /dev/null AuthName "Test Cordillera Conversion...
  5. andycruce

    How do I use perl to start an HTML

    How do I use perl to start an HTML file. I know how to generate HTML within a perl program but what I am looking for is something like. Entry HTML file with a submit button that executes perlprog.cgi | | \/ perlprog.cgi does some entry stuff and...
  6. andycruce

    Object Oriented Perl - Help Getting Started

    I have an application that I essentially hacked together that uses a flat file database to implement an addressbook and some other features. It works fine but I have decided to use this as an opportunity to learn DBI and OOP. I have gotten DBI to work using mysql so at least I know how to...
  7. andycruce

    Using Perl on a Windows Machine

    Thanks Mike - I got it all going after I made this post. As it turns out I was able to find the same database program my hosting company uses mysql and down load a windows version onto my machine. I then got the DBD from active state and installed it. After that it was supprisingly easy to...
  8. andycruce

    Using Perl on a Windows Machine

    I am using perl with PerlBuilder2 on a Win 2000 machine. I would like to make use of DBI.pm to improve on the flat file databases I have been using. I have been trying to figure out how to install a Perl Module on my windows system and haven't had much luck - I'd love to know where to go to...
  9. andycruce

    Sending email to AOL account

    I am having trouble getting email to aol account to go through. The following is the code I use to send emails for ($i=0; $i<=$#ToAddresses; $i++){ print EMAIL &quot;To: $ToAddresses[$i]\n&quot;; } print EMAIL &quot;From: $FromAddress\n&quot;; print EMAIL &quot;Subject...
  10. andycruce

    EMAIL no delivery messages

    I am sending email using the following: open (EMAIL, &quot;| /usr/lib/sendmail -t -i&quot;) or die (&quot;Can't Open Email Pipe&quot;); for ($i=0; $i<=$#ToAddresses; $i++){ print EMAIL &quot;To: $ToAddresses[$i]\n&quot;; } print EMAIL &quot;From: $FromAddress\n&quot...
  11. andycruce

    Preloading Images

    I am trying to preload images for a page and then use mouseover, etc. events to switch between the images. Everything seems to work as expected except my browser still goes out to the web to get what I had hoped were preloaded images. I have checked several posting areas and references and...

Part and Inventory Search

Back
Top