Sponsored Content
Full Discussion: Transistion to php mysqli
Operating Systems Linux Transistion to php mysqli Post 303019254 by Neo on Tuesday 26th of June 2018 12:56:25 AM
Old 06-26-2018
We also have the same problem with transitioning these forums to PHP7 and mysqli from legacy versions of PHP.

It's a lot of work and I've not had time to do it because of other projects.
 

5 More Discussions You Might Find Interesting

1. Web Development

I can't open my index.php page after insert php code

Hello guys, Does anyone can help me? I've just made my simple index.php without any code, but after insert session code to check if any user is authenticated, my index.php doesn't work anymore. Any fresh eyes could help me to see what and where the code is wrong? <? if... (6 Replies)
Discussion started by: metalfreakbr
6 Replies

2. UNIX for Advanced & Expert Users

Running multiple php scripts into one php only, cron mail alert problem...

hi, while separated they produce the usual mail alert and i can see the output... if i write into the php script: <?php system('php -f /var/www/vhosts/domain.com/httpdocs/folder/script1.php'); system('php -f /var/www/vhosts/domain.com/httpdocs/folder/script2.php'); system('php -f... (0 Replies)
Discussion started by: 7stars
0 Replies

3. Red Hat

Update php 4.3 RPM to php 5.3.3 php

Dear All, My redhat version is: # cat /etc/redhat-release Red Hat Enterprise Linux AS release 4 (Nahant Update 4) # # uname -a Linux cotapplication3.cot.com 2.6.9-42.ELsmp #1 SMP Wed Jul 12 23:32:02 EDT 2006 x86_64 x86_64 x86_64 GNU/Linux # I want to update my php from: # php... (1 Reply)
Discussion started by: monojcool
1 Replies

4. Shell Programming and Scripting

Running php index.php as shell in webpage

so i have a bit of a unique situation. i have an encrypted index.php file that that can't be run the normal way that a web browser would run it. if it is run the normal way, the php script will show only gibberish on the web browser, instead of the actual php code. when run from the command... (8 Replies)
Discussion started by: SkySmart
8 Replies

5. What is on Your Mind?

Saturday May 4th the Forums Will Briefly Break Testing PHP 5.6 to PHP 7.0

On Saturday May 4th the forums will briefly break when I switch our Apache PHP 5.6 module to PHP 7.0. Previously, I had two sites set up for testing the migration, but for many reasons, the second site has additional issues unrelated to PHP 7.0 so it is hard to debug on a different site and... (3 Replies)
Discussion started by: Neo
3 Replies
relative(3pm)						User Contributed Perl Documentation					     relative(3pm)

NAME
relative - Load modules with relative names VERSION
Version 0.04 SYNOPSIS
package BigApp::Report; use relative qw(Create Publish); # loads BigApp::Report::Create, BigApp::Report::Publish use relative qw(..::Utils); # loads BigApp::Utils use relative -to => "Enterprise::Framework" => qw(Base Factory); # loads Enterprise::Framework::Base, Enterprise::Framework::Factory DESCRIPTION
This module allows you to load modules using only parts of their name, relatively to the current module or to a given module. Module names are by default searched below the current module, but can be searched upper in the hierarchy using the "..::" syntax. In order to further loosen the namespace coupling, "import" returns the full names of the loaded modules, making object-oriented code easier to write: use relative; my ($Maker, $Publisher) = import relative qw(Create Publish); my $report = $Maker->new; my $publisher = $Publisher->new; my ($Base, $Factory) = import relative -to => "Enterprise::Framework" => qw(Base Factory); my $thing = $Factory->new; This can also be written using aliases: use relative -aliased => qw(Create Publish); my $report = Create->new; my $publisher = Publisher->new; use relative -to => "Enterprise::Framework", -aliased => qw(Base Factory); my $thing = Factory->new; IMPORT OPTIONS
Import options can be given as an hashref or an arrayref as the first argument: # options as a hashref import relative { param => value, ... }, qw(Name ...); # options as an arrayref import relative [ param => value, ... ], qw(Name ...); In order to simplyfing syntax, options can also be given as dash-prefixed params: import relative -param => value, qw(name ...); Available options: o "to" can be used to indicate another hierarchy to search modules inside. Examples # in a hashref: import relative { to => "Some::Other::Namespace" }, qw(Other Modules); # as dash-param: import relative -to => "Some::Other::Namespace", qw(Other Modules); o "aliased" will create constants, named with the last component of each loaded module, returning its corresponding full name. Yes, this feature is very similar to what "aliased" does as it was added per Ovid request ":-)" Examples # in a hashref: import relative { aliased => 1 }, qw(Whack Zlonk); my $frob = Whack->fizzle; # as dash-param: import relative -aliased, qw(Whack Zlonk); my $frob = Whack->fizzle; "import" will "die" as soon as a module can't be loaded. "import" returns the full names of the loaded modules when called in list context, or the last one when called in scalar context. AUTHOR
Sebastien Aperghis-Tramoni, "<sebastien at aperghis.net>" BUGS
Please report any bugs or feature requests to "bug-relative at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=relative>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc relative You can also look for information at: o AnnoCPAN: Annotated CPAN documentation <http://annocpan.org/dist/relative> o CPAN Ratings <http://cpanratings.perl.org/d/relative> o RT: CPAN's request tracker <http://rt.cpan.org/NoAuth/Bugs.html?Dist=relative> o Search CPAN <http://search.cpan.org/dist/relative> ACKNOWLEDGEMENTS
Thanks to Aristotle Pagaltzis, Andy Armstrong, Ken Williams and Curtis Poe for their suggestions and ideas. COPYRIGHT &; LICENSE Copyright 2007 Sebastien Aperghis-Tramoni, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2008-05-09 relative(3pm)
All times are GMT -4. The time now is 11:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy