This is a discussion on explorer within the PHP General forums, part of the PHP Programming Forums category; Hi, How if, it is possible to open a windows explorer with a path specified in it, thru a php ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
on the local machine? no. you can simulate an explorer for files on the server bastien ----------------------------------------> Date: Sat, 10 Nov 2007 18:10:39 +0530> From: singhai.nish@gmail.com> To: php-general@lists.php.net> Subject:[php] explorer>> Hi,>> How if, it is possible to open a windows explorer with a> path specified in it, thru a php script.>> BRgds,>> kNish>> --> PHP General Mailing List (http://www.php.net/)> To unsubscribe, visit: http://www.php.net/unsub.php> __________________________________________________ _______________ Express yourself with free Messenger emoticons. Get them today! http://www.freemessengeremoticons.ca/?icid=EMENCA122 |
|
|||
|
On Sat, Nov 10, 2007 at 09:33:17AM -0500, Bastien Koert wrote:
> > on the local machine? no. you can simulate an explorer for files on the server An <input type="file"> will automatically display a browse button that opens a user environment specific file browser (aka "explorer"). -- "Market-like arrangements ... reduce the need for compassion, patriotism, brotherly love, and cultural solidarity as motivating forces. Harnessing the "base" motive of material self-interest ... is perhaps the most important social invention mankind has achieved." -- C. L. Schulte, Public Use of the Private Interest, 1977 Rick Pasotto rick@niof.net http://www.niof.net |
|
|||
|
You can't (SERVER vs Client) you cannot make Php open an program on the
client computer. If you want to get a file from your computer that is a simple HTMLTag. <input type="file" name="image" tabindex="1" size="35" /> Please explain if that is not what you meant. -----Original Message----- From: kNish [mailto:singhai.nish@gmail.com] Sent: Saturday, November 10, 2007 6:41 AM To: php-general@lists.php.net Subject: [php] explorer Hi, How if, it is possible to open a windows explorer with a path specified in it, thru a php script. BRgds, kNish -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |
|
|||
|
Hi,
I am a newB to php. When a user clicks a button on the client side, it will open a windows explorer with the path to a folder from the server machine. Is it possible. Lets say my server is machine x and client is machine y. from y is it possible using php to open a path from x (X:\folder1\folder2\) I am using <p><a href="<?php exec($click_Folder); ?>"><?php echo "Sequence Path"; ?> </a></p><br />. Alternatively, I used system instead of exec. It shows the path but upto two subfolders not all. BRgds, kNish On 11/10/07, kNish <singhai.nish@gmail.com> wrote: > Hi, > > How if, it is possible to open a windows explorer with a > path specified in it, thru a php script. > > BRgds, > > kNish > |