I need to generate a response with a background image, using cgi.pm, my script looks like this:
use CGI;
$q= new CGI;
print $q->header();
print $q->start_html(-title=>'test');
print "test"
print $q->end_html;
there is a parameter for BGCOLOR:
print...
I have a database that is in excel, to read it into perl and do calulations with it based on user input, I export it into text, save as .txt and read it in into Perl.
I would get the script to work directly from excel and skip the conversion to text.
I can get it to read directly from Excel...
I have a script that works fine when the data is stored in the same file as the script.
The data is a 2-D array.
because the file is quite large, I stored it in a seperate .txt file to read only from the script.
But the script does not 'see' the data as a 2-d array, as it can't access specific...
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.