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