Hi Ali,

I hope I understood your question correctly.

A user fills out a form, and you want the results to be displayed on the same page 
(URL) ?

If that's the case, read up on subroutines.  Subroutines are kind of like "bins" that 
hold perl
code.

Here's some pseudocode:

if (some_condition){

   run_subroutine_1

} else {

   run_subroutine_2

}

sub run_subroutine_1 {

# do something

}

sub run_subroutine_2 {

# do something

}

run_subroutine_1 could display a form, for example.
And run_subroutine_2 could process those results.

All done on the same page.

HTH,
simon

--- alpha <[EMAIL PROTECTED]> wrote:
> hi all 
> i am new in perl and want to know can a perl cgi , return results in other way ? 
> i know cgi script return result in new webpage . but i dont want a new  page open . 
> i want it return result in same page and in row i call it . 
> like a counter or other web tools 
> 
> thank u in advance
> ali
> 
> 


=====
#########################################

Warmest Regards,
Simon K. Chan - [EMAIL PROTECTED]

"Great spirits have always encountered violent opposition from mediocre minds."  - 
Albert Einstein

__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to