Hi every body. could any one show me how to grab the passed value . for example if i pass a value like the link below . how i can grap and print it in the next page.Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl -w
use strict;
use CGI;
my $q = new CGI;
my $name = $q->param( 'name' );
print $q->header, $name, "\n";