lyrico 23 Junior Poster in Training

Hi everyone,

I need some help now.

Can anyone show me a script on how can shared folder (not folder on the server) open using php? I mean my server's IP is 10.10.10.1 and then some shared folder are on the IP 10.10.10.2. Now I want to access the shared folder on 10.10.10.2

The idea is:

<?php

echo "<form action='\\10.10.10.2' method='post'>"; //I know this is wrong, but just to give you the idea.
echo "<input type='submit' name='submit' value='Go to Shared Folder'>";
echo "</form>"

?>

Thanks in advance guys.