On Thu, 20 Feb 2003 at 09:41, Peter Kappus opined:
[snip]
PK:Quite ingenious. While I'm sure I'll regret it later (and curse your good
PK:name as I'm wishing I'd taken the time to learn Mason or HTML::Template)
PK:this seems like a great quick fix for the time being. And it never hurts to
PK:lea
Aha! This is exactly the kind of solution I was looking for. I guess what
I'm doing here is passing a reference to a subroutine call? \box(5,10) and
then turning it into a scalar? ${}
Quite ingenious. While I'm sure I'll regret it later (and curse your good
name as I'm wishing I'd taken the t
> www.mysite.com/index.cgi?id=$var&name=$var2
>
> But How can I send a varibles to another page ?
> I need to send this Two variables to index.cgi , but
> When I try it ,none
> of Them seems to be reiceived .
use CGI;
use strict;
$q=new CGI();
$id=$q->param('id');
$name=$q->param('name');
Then d
Hi ,
Maybe this is a stupid question , because I just
beginning learning Perl ...
I have for ej :
www.mysite.com/index.cgi?id=$var&name=$var2
But How can I send a varibles to another page ?
I need to send this Two variables to index.cgi , but
When I try it ,none
of Them seems to be re