Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 700035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:27:09+00:00 2026-05-14T03:27:09+00:00

I have two folders php and perl . They contain index.php and index.pl ,

  • 0

I have two folders php and perl. They contain index.php and index.pl, respectively.

My Perl code looks like:

#!/usr/bin/perl
use Mysql;

print "Content-type: text/html\n\n"; 
print "<h2>PERL-mySQL Connect</h2>";
print "page info";
$host = "localhost";
$database = "cdcol";
$user = "root";
$password = "";
$db = Mysql->connect($host, $database, $user, $password);
$db->selectdb($database);

When i run above code (by typing http://localhost:88/perl/ in the browser), I get the following error:

Can't locate Mysql.pm in @INC (@INC contains: C:/xampp/perl/site/lib/ C:/xampp/perl/lib C:/xampp/perl/site/lib C:/xampp/apache) at C:/xampp/htdocs/perl/index.pl line 2. BEGIN failed--compilation aborted at C:/xampp/htdocs/perl/index.pl line 2.

whereas browsing to http://localhost:88/php/ works.

index.php has:

<?php
$con = mysql_connect("localhost","root","");
    if($con)
    {
        if(mysql_select_db("cdcol", $con))
        {
            $sql="SELECT Id From products";
            if(mysql_query($sql))
            {
                $result = mysql_query($sql);
                if ($result) ...
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T03:27:10+00:00Added an answer on May 14, 2026 at 3:27 am

    You should use DBI in conjunction with DBD::mysql.

    You should use a standard CGI processing module such as CGI::Simple.

    use strict; use warnings;
    use CGI::Simple;
    use DBI;
    
    my $cgi = CGI::Simple->new;
    my $dsn = sprintf(
        'DBI:mysql:database=%s;host=%s',
        'cdcol', 'localhost'
    );
    
    my $dbh = DBI->connect($dsn, root => '',
        { AutoCommit => 0, RaiseError => 0 }
    );
    
    my $status = $dbh ? 'Connected' : 'Failed to connect';
    
    print $cgi->header, <<HTML;
    <!DOCTYPE HTML>
    <html>
    <head><title>Test</title></head>
    <body>
    <h1>Perl CGI Script</h1>
    <p>$status</p>
    </body>
    </html>
    HTML
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two folders, for arguments sake /Volumes/A and /Volumes/B. They are mounted network
in /usr/local i now have two mysql folders: mysql-5.1.34-osx10.5-x86 mysql-5.1.37-osx10.5-x86_64 is it possible to
Let’s say I have two folders in my PHP server root directory: x and
I have discovered the following code appear in two identical .php files on more
I have just one root directory with index.php in it along with two folder
I have three files in a folder 'test' one.php two.php print.html And i have
Have two folders with approx. 150 java property files. In a shell script, how
I have wrote an application that syncs two folders together. The problem with the
I have used two GUIDs to open the folders My Computer and My Documents
I use PHP to get a list of folders, and then documents from Google

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.