Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Zhris
  • Content: Threads
  • Order by date
  1. Zhris

    Var 11 auto converted to 13

    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...
  2. Zhris

    Creating a wrapper module (multiple inheritance)

    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...
  3. Zhris

    Users choosing incorrect shipping location

    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...
  4. Zhris

    Retrieving empty data via Storable

    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...
  5. Zhris

    First OOP programme

    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...
  6. Zhris

    Editing a image slideshow script - array into body

    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...
  7. Zhris

    Complex multiple condition sort routine

    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...
  8. Zhris

    Basic email regex

    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...
  9. Zhris

    Calendar/booking script

    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...
  10. Zhris

    Session lost when a Perl script is included in a PHP script

    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...
  11. Zhris

    Multiple unique sessions per domain

    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...
  12. Zhris

    Do not add to hash if it does not exist

    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}) ...
  13. Zhris

    CGI::Session param expiration

    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...
  14. Zhris

    Include/execute PHP header/footer

    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...
  15. Zhris

    Vertical background alignment in Mozilla Firefox

    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...
  16. Zhris

    Nested loops with HTML::Template

    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...
  17. Zhris

    If cookies enabled then create or reuse id

    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...
  18. Zhris

    Parsing a file describing the structure of a navigation system

    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...
  19. Zhris

    Include url that contains commas

    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'...
  20. Zhris

    Ensuring part of a string does not match whilst the rest does

    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...

Part and Inventory Search

Back
Top