New movies in Limassol cinemas

I’ve updated Limassol cinema schedule. There are two new movies! First is very funny (I think) movie about the laziest cat in the world.

Garfield
HellBoy

Summary:
Jon Arbuckle buys a second pet, a dog named Odie. However, Odie is then abducted and it is up to Jon’s cat, Garfield, to find and rescue the canine.

Second one is a very very scary film about some boy from hell judge by the title!

Summary:
A demon, raised from infancy after being conjured by and rescued from the Nazis, grows up to become a defender against the forces of darkness.
Personally I’m waiting for Will Smith into a role of fighter with malicious robots!

Howto upload file using Embperl

To allow uploading files to web server via HTTP we should:
1) create web page with form:
<form action='my_script.epl' method=POST enctype="multipart/form-data" >
<input type='hidden' name='action' value='upload' />
<input type='file' name='my_file' size='20' />
< input type='submit' name='submit' value='Upload' />
</form>
Pay attention to enctype! If you define it not correct you will not be able to get file handler after submitting your form.

Continue reading Howto upload file using Embperl