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 Mike Lewis 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: *

  • Users: ronan40060
  • Order by date
  1. ronan40060

    How to upload a file through perl/cgi code

    here you go You can decide where file is to be saved. Sample below save file in directory c:/upload (make sure to create this directory before you test the script) #!c:/perl/bin/perl.exe use CGI qw/:standard/; print header; if(param) { save_file(); } else {...
  2. ronan40060

    how to use apache and perl???

    what have you configured your Apache with ModPerl or with ActivePerl ??
  3. ronan40060

    how to use apache and perl???

    >>>>>How do you know if active perl is installed or not? Well u can simply check it out by clicking the start button -> program files -> you have active perl there listed in programs >>>>>What is the difference between active perl and perl? well active perl is for Windows environment
  4. ronan40060

    how to use apache and perl???

    >>>>Do I need any make file? the answer is NO , Once you installed an active perl , you can install all the module using ppm unless your behind a firewall then for windows its nmake command >>Do I need to set any enviornment variables? the answer is NO , when you install Activeperl the setup...
  5. ronan40060

    Perl/CGI help

    use warnings; use strict; use CGI; ##### Bring CGI module into program use CGI::Carp qw(fatalsToBrowser); ### displays all errors onto browser my $q = new CGI; my $dbh = DBI->connect( 'dbi:mysql:host=xxxxxxxx; sid=xxxx;port=xxxxx', 'user'...
  6. ronan40060

    XML Perl question

    I just found a very good article for XMl and PERL pls do check this out http://www.perfectxml.com/oreilly/chapter.asp?row_id=20
  7. ronan40060

    XML Perl question

    Well As far as I know XML::Simple allows you to read in XML files as nested hashes of references, which can be very useful if you're only extracting a few values, here is the link for that http://search.cpan.org/~grantm/XML-Simple-2.12/lib/XML/Simple.pm And XML::Parser is a SAX based parser...
  8. ronan40060

    XML Perl question

    hello webmaster if u need to convert the result of a database query to XML , u need to use XML::Writer or XML::generator::DBI modules i would sugegst you to go through this link http://www.informit.com/articles/article.asp?p=30010 hope it helps ronan
  9. ronan40060

    Perl/Mysql

    This is littile advanced to displayed onto a browser when u have a parameter use CGI; use CGI::Carp qw(fatalsToBrowser); my $q = new CGI; my $dbh = DBI->connect( 'dbi:mysql:host=xxxxxxxx; sid=xxxx;port=xxxxx', 'user'...
  10. ronan40060

    Simple Date Question???

    hello duncan what about the perl date module what I did not understand in your answer is ($seconds, $minutes, $hour, $dayOfMonth, $month, $year, $dayOfWeek, $dayOfYear) = localtime(time); print "current dayOfMonth is: $dayOfMonth\n"; $month ++; print "current month is: $month\n"; $year +=...
  11. ronan40060

    Help/Advice needed to install DBI.pm module

    Hello Evan I read your questions well I have also started programming in Perl with Oracle 8i and I also did have some problems installing DBI and DBD modules as We have a proxy and in spite of prxy address in environment tabs , I had not been able to install but I did succed when I stored to...

Part and Inventory Search

Back
Top