Wrox Programmer Forums
|
PHP How-To Post your "How do I do this with PHP?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the PHP How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 19th, 2006, 05:57 AM
Registered User
 
Join Date: Dec 2006
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default Browse File

i need php code to browse file path.when i select the file wich i need that path should be display in the textbox.

plz help me


 
Old December 19th, 2006, 06:21 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default

What is this nishan, what is this..
Here is the simple code

<html>
<head>
    <title>File Upload Example</title>
    <script language="JavaScript" type="text/javascript">
    function HandleFileButtonClick()
    {
        document.frmUpload.myFile.click();
        document.frmUpload.txtFakeText.value = document.frmUpload.myFile.value;
    }
    </script>
</head>
<body>
  <form name="frmUpload">
    <input type="file" name="myFile" style="display: none">
    <input type="text" name="txtFakeText" readonly="true">
    <input type="button" onclick="HandleFileButtonClick();" value="Select File">
  </form>
</body>
</html>

surendran
(Anything is Possible)
http://ssuren.spaces.msn.com
 
Old March 23rd, 2007, 01:54 PM
Authorized User
 
Join Date: Oct 2006
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Default

helo surendran,

how about if after i browse the file then i want to submit it how to make that?
like for example after browsing it then something there is a button to be click like submitt or ok then the will be stored it in tha database

________________________________________
.::If you quit you loss,If you survive you win::.

.::JHANNY::.






Similar Threads
Thread Thread Starter Forum Replies Last Post
Using a file browse dialog box gaurisharya Beginning VB 6 4 April 30th, 2008 12:43 AM
To browse a file from client system Indraja ASP.NET 2.0 Basics 2 May 3rd, 2007 07:56 AM
how to browse a file from computer for attachment? rocksbhavesh ASP.NET 1.0 and 1.1 Professional 2 March 26th, 2007 08:47 AM
Browse to File Control? Aaron Edwards Access 3 September 13th, 2005 01:05 AM
File Field - How to browse for a file? shamigc Access 4 July 27th, 2004 01:13 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.