Re: AW: More Perl and AJAX

2007-08-29 Thread Mathew Snyder
umber of elements. > > -Ursprüngliche Nachricht- > Von: Mathew Snyder [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 29. August 2007 13:32 > An: Perl Beginners > Betreff: More Perl and AJAX > > > When passing a value from JavaScript to a Perl script, am I right in > thinking t

RE: More Perl and AJAX

2007-08-29 Thread Andrew Curry
# do something # } elsif (param('today')) { # # do something # } -Original Message- From: Mathew Snyder [mailto:[EMAIL PROTECTED] Sent: 29 August 2007 12:32 To: Perl Beginners Subject: More Perl and A

AW: More Perl and AJAX

2007-08-29 Thread Angerstein
Ihhhkk @values = @_; Or you got the number of elements. -Ursprüngliche Nachricht- Von: Mathew Snyder [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 29. August 2007 13:32 An: Perl Beginners Betreff: More Perl and AJAX When passing a value from JavaScript to a Perl script, am I right

More Perl and AJAX

2007-08-29 Thread Mathew Snyder
When passing a value from JavaScript to a Perl script, am I right in thinking that the value received by the Perl script would be captured like my $value = @_;? I'm trying to pass a value to Perl and by calling it directly in the browser and passing a value to it like so http://ajax.application.c

Re: Perl and AJAX

2007-08-27 Thread Mathew Snyder
Paul Lalli wrote: > On Aug 27, 8:43 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: >> Let's forget for a moment that CGI::Ajax exists. Instead, imagine that all I >> want to do is call a Perl script from my AJAX application. Having created >> all >> the necessary communication lines I then pass th

Re: Perl and AJAX

2007-08-27 Thread Mathew Snyder
Paul Lalli wrote: > On Aug 27, 8:43 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: >> Let's forget for a moment that CGI::Ajax exists. Instead, imagine that all I >> want to do is call a Perl script from my AJAX application. Having created >> all >> the necessary communication lines I then pass th

Re: Perl and AJAX

2007-08-27 Thread Paul Lalli
On Aug 27, 8:43 am, [EMAIL PROTECTED] (Mathew Snyder) wrote: > Let's forget for a moment that CGI::Ajax exists. Instead, imagine that all I > want to do is call a Perl script from my AJAX application. Having created all > the necessary communication lines I then pass the script URL with the GET >

Perl and AJAX

2007-08-27 Thread Mathew Snyder
Let's forget for a moment that CGI::Ajax exists. Instead, imagine that all I want to do is call a Perl script from my AJAX application. Having created all the necessary communication lines I then pass the script URL with the GET method to the "line" in order to execute said Perl script. All the