tags:

views:

32

answers:

1

I've looked online for ways to do this, and I've found two PHP methods for accesing WebDAV:

Basically, I want a WebDAV API - doesn't matter how complex, really - that can get/put files with HTTP BASIC authentication. I don't need anything more complex than that. I'm backing this with a subversion autoversioning DAV server, but I can foresee using it in other ways, too, so I don't want to lock myself in to subversion by using an SVN-specific API.

A: 

If you are just looking for GET and PUT, just use Curl! That, or any other decent HTTP library. It's actually quite simple that way.

Evert