Does anyone have some example code making a connection in PHP to a WebDav server? Any code would help me get started since I am having trouble figuring out if WebDav should be treated as a web service, ftp server, or what. Not sure where to start. Thanks.
PHP + WebDav script
There are a couple of new PEAR packages for WebDAV: http://pear.php.net/search.php?q=webDAV&in=packages&x=0&y=0
However, the documentation currently leaves a lot to be desired.
Alternatively, since WebDAV is an extension to the HTTP protocol, you could possibly use the [man]cURL[/man] functions to interface with it, using [man]curl_setopt/man with the CURLOPT_HTTPHEADER option to send the desired HTTP headers.
Thanks for the info, I will have a look.