+1  A: 

Take a look at the exif_read_data() function within PHP.

Here is the official PHP documentation, and here's an example of it in use.

mway
@mway: thank you very much!!
dany
+1  A: 

Regarding JavaScript, there is a script that will allow you to read EXIF information. It uses a rather complex technique using XMLHttpRequest.

Another technique (in its infancy) is to read the file on the client side, using the FileReader interface. An example of using FileReader to read EXIF data was posted on a Mozilla Hacks blog post.

I know you didn't mention EXIF at all and you want to access those Windows file properties. Honestly, I don't know how you'd acess those. You'd probably have to read certain bytes in the file, just like the script at the EXIF example from Mozilla Hacks does.

Rafael
@Rafael: Thanks you!!!
dany