Jump to content

PERL/CGI & PHP include


vietboy505

Recommended Posts

I want to include a PHP file inside a PERL file..

script1.pl
[code]
#!/usr/local/bin/perl

use strict;
use warnings;
use CGI qw(:standard);
use CGI::Carp qw(fatalsToBrowser warningsToBrowser);

print header();
warningsToBrowser(1);

print("<?php include('require_file.php') ?>\n\n");
[/code]

It's in the source code, but it's never include my other php. How can I fixed that?
'require_file.php' is in the same directory the script1.pl is.
Link to comment
https://forums.phpfreaks.com/topic/4250-perlcgi-php-include/
Share on other sites

I try [a href=\"http://www.htmlgoodies.com/beyond/webmaster/article.php/3473341\" target=\"_blank\"]this link[/a], when I try in .pl file, it doesn't do nothing.
I also read this link, [a href=\"http://www.zend.com/php5/articles/php5-perl.php?article=php5-perl&kind=php5&id=6290&open=1&anc=0&view=1#Heading3\" target=\"_blank\"]PERL in PHP[/a]

[code]
<?php

    print "Hello from PHP!\n";
    $perl = new Perl();
    $perl->require("script1.pl");
    print "Bye!\n";

    ?>
[/code]
Give me this:

Hello from PHP!
Fatal error: Class 'Perl' not found in C:\Inetpub\webaps\test2.php on line 4

I try include inside PHP script inside PERL script, doesn't work, so I try the PHP include of PERL file. No luck at all.

Do I need to import Perl class from PHP or something?
Link to comment
https://forums.phpfreaks.com/topic/4250-perlcgi-php-include/#findComment-15080
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.