RE: php like behavior for my perl CGI

2003-02-20 Thread fliptop
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

RE: php like behavior for my perl CGI

2003-02-20 Thread Peter Kappus
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

Re: How can I send Variables ?

2003-02-20 Thread Dennis Stout
> 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

How can I send Variables ?

2003-02-20 Thread Rick
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