Theknonuttinguy
Technical User
$temp=0;
$temp=$ENV{'QUERY_STRING'};
if ($temp) {
$INPUT{'address'} = $temp;
&remove;
}
This a portion of the code that allows my CGI Mail Manager to place a remove link at the bottom of each email.
ie) Click below to be removed immediatly:
If I change the "&remove" to "&subscribe" the above link then becomes an instant subscribe instead of a remove link.
Is there a way to rewrite the above snippet of code to incoorporate both statements?
I am just learning perl/CGI so please speak to the disability and not the man
Thank you for your time
$temp=$ENV{'QUERY_STRING'};
if ($temp) {
$INPUT{'address'} = $temp;
&remove;
}
This a portion of the code that allows my CGI Mail Manager to place a remove link at the bottom of each email.
ie) Click below to be removed immediatly:
If I change the "&remove" to "&subscribe" the above link then becomes an instant subscribe instead of a remove link.
Is there a way to rewrite the above snippet of code to incoorporate both statements?
I am just learning perl/CGI so please speak to the disability and not the man
Thank you for your time