search for partitions
Moderator: General Moderators
search for partitions
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.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
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()

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()
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
So you want to search for directories that are writable?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
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