How can i do this, HTML??

how can i get the browse button like this to appaer on my site. I know if it posts th pic to a database of somthing it is backend work, but for the front end part, how can i do this:<br />
<br />
<!-- m --><a class="postlink" href="http://www.pinkbike.com/modules/photo/?op=submitfiles">http://www.pinkbike.com/modules/photo/?op=submitfiles</a><!-- m --><br />
<br />
<br />
anyone?<br />
<br />
Thanks guys<!--content-->What precisely are you looking for, if I may inquire? The text links...? or the animated picture? What?<!--content-->the way you can click on the browse button and be able to get to that box that comes up simply by the button. sorry..<!--content-->You mean a drop down menu? Where the main text reads "Browse" and then it's got a whole selection of forums? <br />
<br />
Try A1Javascripts (<!-- m --><a class="postlink" href="http://www.a1javascripts.com">http://www.a1javascripts.com</a><!-- m -->). They have a bunch there.<br />
<br />
The code for the "Network" browse is:<br />
<br />
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)" class="field"><br />
<option selected>Navigate Network</option><br />
<option value="http://www.bigresources.com">BigResources.com</option><br />
<option value="http://www.boxedart.com">BoxedArt.com</option><br />
<option value="http://www.123webmaster.com">123Webmaster.com</option><br />
<option value="http://www.a1javascripts.com">A1Javascripts.com</option><br />
<option value="http://www.1-click-clipart.com">1-Click-Clipart.com</option><br />
<option value="http://www.freewarefiles.com">FreewareFiles.com</option><br />
<option value="http://www.fresherimage.com">FresherImage.com</option><br />
<option value="http://www.fontfiles.com">FontFiles.com</option><br />
<option value="http://www.htmlforums.com">HTMLforums.com</option><br />
<option value="http://www.httpCITY.com">httpCITY.com</option><br />
<option value="http://www.perlaccess.com">PerlAccess.com</option><br />
<option value="http://www.hostraiders.com">HostRaiders.com</option><br />
</select><br />
<br />
You'd have to change the "class=field" part, though, to whatever CSS class you want on the buttons.<br />
<br />
Does that help?<br />
<br />
Peg<!--content-->Ok, I see what you mean...<br />
<br />
The response lies here:<br />
<input onChange="add3();" TYPE="file" NAME="userfile[]" SIZE="60"><br />
<br />
the 'type="file"' part of this snippet is what causes the browser to spawn that little file browsing window.<br />
<br />
If that what you wanted? I hope so --<br />
<br />
Illusina<!--content-->That browse window comes up when you have a form element of type="File". E.g.<form action="example.php" method="post" enctype="multipart/form-data"><br />
<input type="File" /><br />
</form>Take that html, stick it on a page of yours and try it :)<!--content-->
 
Back
Top