in reply to Re^2: insert CGI script in single quotes.
in thread insert CGI script in single quotes. [SOLVED]
What do you mean by "single quotes function"? It will help us if you can post the problematic loop with the function, ideally together with the data you want to pass to it. Something like the following:
#!perl -w use strict; # This would come from the database my @data = ( ['Hello','World',1,2,3,4,5], ['Hello','Pakeidoprek,6,7,8,9,0], ); while( my $item = shift @data) { ... problematic part ... };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: insert CGI script in single quotes.
by pakeidoprek (Novice) on Apr 26, 2016 at 17:44 UTC | |
by Corion (Patriarch) on Apr 26, 2016 at 18:41 UTC |