%PDF- %PDF-
Direktori : /home/rappan/www/_cgi_mail/commons/ |
Current File : /home/rappan/www/_cgi_mail/commons/getpostcode.cgi |
#!/usr/local/bin/perl $postcodes_dir = 'postcodes/'; $file_number = substr($ENV{'QUERY_STRING'}, 0, 2); $postcode_file = sprintf("${postcodes_dir}%02d.postcode",$file_number); if(-f $postcode_file){ flock(FH, LOCK_EX); open(FH,"$postcode_file"); @postcodes = <FH>; close(FH); flock(FH, LOCK_NB); @address = grep(/\"$ENV{'QUERY_STRING'}\"/,@postcodes); if(@address){ $address[0] =~ s/\"//ig; @address = split(/\,/,$address[0]); $html = "${address[6]}\,${address[7]}\,${address[8]}"; } else{ $html = "NOT FOUND ADDRESS"; } } else{ $html = "NOT FOUND POSTCODE FILE"; } print "Content-type: text/html; charset=UTF-8\n\n"; print "${html}";