Hello
K, i'm seeking advice in finding a script to store anything sent to it, preferably text files.....ive searched all over the place, ive come across form handlers...ect..but not one that will store all text sent to it (like a database or whatever)...i'm well new at perl by the way...
sub getCookies {
local(@rawCookies) = split (/; /,$ENV{'HTTP_COOKIE'});
local(%cookies);
foreach(@rawCookies){
($key, $val) = split (/=/,$_);
$cookies{$key} = $val;
}
return %cookies;
}
this is used for cookies is it not....how would i change it for text files ?
thanks