search for partitions

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
cman
Forum Newbie
Posts: 2
Joined: Wed Jul 27, 2005 3:20 pm

search for partitions

Post by cman »

Hello im doing some stuff in php and now i need to find windows shared partitions, and i dont know were to start, i whould like a mechanism like uploading a file on a email, with clicks. Can anyone give me a point to start.
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Post by Chris Corbyn »

I'm not sure what you're asking. You want to "search" for partitions? :?

As for file uploading there's a good explanation in the manual:

http://us2.php.net/features.file-upload

move_uploaded_file()
is_uploaded_file()

:)
cman
Forum Newbie
Posts: 2
Joined: Wed Jul 27, 2005 3:20 pm

Post by cman »

sorry about my englis. Is allmost that what im looking for, i need that search but not for a file but for directorys
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Post by Chris Corbyn »

cman wrote:sorry about my englis. Is allmost that what im looking for, i need that search but not for a file but for directorys
So you want to search for directories that are writable?

Ah hold on a second I think I see what you mean. Do you mean search for shared directories on the client computer, the visitor to the web page? That's actually not possible since such features are not implemented into web browsers for security reasons. The best you could do is either have the user manually upload files, or have them accept a security warning to use a Java applet. The latter, I cannot help you with unfortunately :)
Post Reply