in reply to Getting a value from a PHP script
use CGI; my $cgi = new CGI; ... my $engr_value = $cgi->param("engr"); #Do something with based on the value of $engr_value
Of course you will have to take into account the fact that the script will run under reduced privileges similar to the web server. This would be the same with the other suggestions made.
|
|---|