Hello,
Every time I use a query param with the value 11 or 2011, its automatically converted to 13 or 2013. In fact anything below 12 or 2012 is converted. Example:
// /test.php?Year=11
<?php
$year = $_GET['Year'] | '12';
echo "$year";
?>
I'm assuming its recognizing that the value is a...
Hello,
I have an issue which I would like an expert advise on.
I am "using existing" & "creating custom" Facebook modules, then wrapping them in a single module. The main issue is I don't want to create a bunch of accessor methods, I want to be able to call methods directly from the parent...
Hello,
I developed an eCommerce website which due to the type of products being sold, is aimed at an older generation. In response to this, the plan was to keep the website as simple as possible, without having to force the user to provide us with information that PayPal can't already handle...
Hey,
I'm currently writing an OO chat room in Perl and have bumped into a couple of issues I am unable to resolve easily.
My aim was to use CGI::Session to handle users, and Storable to handle messages. Both of these modules can store data structures which is important.
One of the first...
Hello,
I was recently inspired by a recent thread (http://www.tek-tips.com/viewthread.cfm?qid=1639030&page=1) to expand my skills in Perl, and begin to programme using OOP. I have read example code in my time, but never applied my knowledge. I decided I would create my first OOP programme...
Hello,
I am trying to edit an image slideshow script I found on DynamicDrive.com (http://www.dynamicdrive.com/dynamicindex14/preloadslide.htm). Basically, I am trying to move the array containing the images out of the main script, and put it into the body. This is because the image urls are...
Hi,
I'm trying to sort data in a particular way:
- Primarily by the users choice.
- Secondarily by "coordinates" (keys 'X' or 'Y' or 'Z').
However, when the user first visits the webpage, because they haven't yet made a choice on how to sort the data, it should be sorted by default by...
Hello,
I tried to create a very basic regular expression that will match an email address. Its meant to be as simple as possible, and shouldn't worry about the types of characters used. However its not working and i'm not sure why.
/^([^@]+@[^\.]+\.\w+(\.\w+)?){6,100}$/
-Match anything except...
Hello,
I have recently been given the task to supply a script (preferably in PHP or Perl), which allows users to book a specific period of time aboard a boat. My clients requirements are very specific and i'm struggling to find a pre-coded script which fufills atleast some of the key...
Hey,
Wasn't entirely sure which forum this 1 should belong to.
I have a PHP script, which includes a Perl script that checks if the user is logged in, and prints the appropriate links.
If I run the PHP script when the user is logged in, the "logged out links" are displayed. If I run the Perl...
Hi,
Is it possible to run 2 entirely separate sessions using CGI::Session under the same domain?
I am having problems with 2 scripts conflicting. A login script I want to use simply creates a session if login details are correct, then the secure page checks if the session exists. However, a...
Hey,
I run the following code:
#! /usr/bin/perl
use strict;
use Data::Dumper;
my %products;
my $category = 'Category';
my $product = 'Product';
my $colour = 'Colour';
print Dumper(\%products);
my $productsquantity = (exists $products{$category}{$product}{$colour}) ...
Hello,
From what I was told, if you do not explicitly set an expiration for a session or a param, then it will only expire once the browser has been closed entirely. I have even tested this with a simple script, and seems to be the case.
However, I have recently edited a script, and at no...
Hello,
I have been stuck on this one for a few days and have put off posting a thread until I was satisfied I had exhausted all attempts to get this to work.
I have a perl script (script.pl). In a separate folder I have header.php and footer.php. Note that header.php also includes 2 other php...
Hello,
I'm working on a template and I am having problems aligning an image background within a div vertically so that the background is completely centered. This problem does not occur in IE. I am using the CSS style:
#right-title{
position: relative;
padding: 0;
float: right;
width...
Hi,
I am currently working on a project and I am trying to separate HTML code from Perl code completely, therefore HTML::Template is a suitable option.
However, I am having difficulties putting a <TMPL_LOOP> within another <TMPL_LOOP>. I tried numerous methods before returning to the...
Hello,
I am trying to create a script which first checks if the user has cookies enabled or not. If they are then give the cookie a unique random value. If the page is reloaded then I don't want to give the cookie a new value, but give it back its current value and re-extend its expiry time...
Hello,
I am trying to create a navigation system which parses a text file that describes the structure using tabs at the beginning of each line.
I don't understand how I can use perl to identify when there is one extra tab, to add another dimension to the hash, and when there one less tab, to...
Hello,
I am trying to include a html file within a php script. I use this code:
$old_url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
$dirname = dirname($old_url);
$include_url = $dirname.'/../Interview-Courses/Other-Info/Introduction/ST, CT, FY Trainees.htm'...
Hey,
I have an array of strings:
my @strings = ("abcZZZabc","defHOMEdef","hijYYYhij");
I want to ensure that only strings that don't contain HOME in the middle will be pushed into a new array. However I am having problems trying to create a single regular expression which will complete the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.