Raheel Hassan wrote:
Thanks Arun and Rob,
For example if this is the url then ,
https://localhost/Iv2/cbox/cbox-gui.pl?action=status
my ($myself) = split(/\?/,$q->self_url);
#$myself = https://localhost/Iv2/cbox-gui.pl
my @base_url = split(/\//, $myself);
# @base_url = {localhost, Iv2, cbox-gu
Thanks Arun and Rob,
For example if this is the url then ,
https://localhost/Iv2/cbox/cbox-gui.pl?action=status
my ($myself) = split(/\?/,$q->self_url);
#$myself = https://localhost/Iv2/cbox-gui.pl
my @base_url = split(/\//, $myself);
# @base_url = {localhost, Iv2, cbox-gui.pl}
my $base_url = $
On Thu, Oct 15, 2009 at 2:55 PM, Raheel Hassan wrote:
> Hi,
>
> I will be very thankful if someone explains under given code.
>
> #- CGI Module --
> use CGI;
>
> $q = CGI->new();
>
> my ($myself) = split(/\?/,$q->self_url); #from where it will call the
> url?
>
Hi,
I will be very thankful if someone explains under given code.
#- CGI Module --
use CGI;
$q = CGI->new();
my ($myself) = split(/\?/,$q->self_url); #from where it will call the
url?
my @base_url = split(/\//, $myself); #what is \ /
my $base_url = $b
On Thu, Apr 23, 2009 at 09:07, Raheel Hassan wrote:
snip
> Thanks yes it works now. One more think when i tried to check any other
> modules like,
> 1-perl -MCrypt::SSLeay -le 'print "ok"' or
> 2-perl -MMIME-Base64 -le 'print "ok"' or
> 3-perl -MIO::Socket::SSL -le 'print "ok"'
>
>
> It prompts th
Thanks for your reply, please look below for more queries.
On Thu, Apr 23, 2009 at 12:27 PM, Chas. Owens wrote:
> On Thu, Apr 23, 2009 at 05:45, Raheel Hassan
> wrote:
> snip
> > Can you please explain IO::Socket::SSL and DBD::mysql why we write in our
> > programs these lines..
> snip
>
> IO::
On Thu, Apr 23, 2009 at 05:45, Raheel Hassan wrote:
snip
> Can you please explain IO::Socket::SSL and DBD::mysql why we write in our
> programs these lines..
snip
IO::Socket::SSL is a module that lets you easily open SSL sockets.
See http://search.cpan.org/dist/IO-Socket-SSL/SSL.pm for more infor
Please see below, for some more questions.
On Tue, Apr 21, 2009 at 9:22 PM, Chas. Owens wrote:
> On Tue, Apr 21, 2009 at 12:37, Raheel Hassan
> wrote:
> > Thanks a lot for your explanation. For adding support of CGI, SSL and
> MySQL
> > in perl, what modules do i need to install. Please write d
On Tue, Apr 21, 2009 at 12:37, Raheel Hassan wrote:
> Thanks a lot for your explanation. For adding support of CGI, SSL and MySQL
> in perl, what modules do i need to install. Please write down the commands
> for installing and uninstalling and also for checking that what modules are
> installed b
Thanks a lot for your explanation. For adding support of CGI, SSL and MySQL
in perl, what modules do i need to install. Please write down the commands
for installing and uninstalling and also for checking that what modules are
installed by default in perl as i have read the apache doccumentation wh
On Thu, Apr 16, 2009 at 11:14, Raheel Hassan wrote:
> Hello,
>
> I have seen some Perl scripts where some times these lines are mentioned in
> the begining of the script can any body explain these lines.
>
> *Script-1*
> use DBI; # What is been called here.
snip
Th
Hello,
I have seen some Perl scripts where some times these lines are mentioned in
the begining of the script can any body explain these lines.
*Script-1*
use DBI; # What is been called here.
use Test::DB::DBAccess;
use Test::DB::DBOps;
*Script-2*
package DBAccess
12 matches
Mail list logo