Star
|
| Posted: 03/03/2003, 11:24 AM |
|
Can somebody tell to me how can I include a 'Browse' button so I can find my pictures and put directly to my hyperlink field instead of putting the path by hand.I'm using PHP4 and mysql just for information.
Thanks
Star
|
|
|
 |
Deryl
|
| Posted: 03/07/2003, 8:19 AM |
|
Use an HTML form with an input tag of type file to get the info (<input name="myfile" type="file">). Below is part of my HTML file to something similar.
<form enctype="multipart/form-data" action="UploadResult.asp" method="post">
Attach a file:<input name="myfile" type="file"><input type="submit" value="Attach File">
</form>
|
|
|
 |
Star
|
| Posted: 03/09/2003, 5:48 AM |
|
Thanks Deryl.
I managed it now with CodeCharge Studio beta 2.0.4.1.
It has incorporated File Upload system,and also popup date picker,...and many more things.If you didn't try jet try it.
Thanks
|
|
|
 |
|