As I always mention I'm pretty new to web design and I'm kinda learning as problems present themselves. The one I've run into today is creating a, for lack of a better word, "offical" download button. I found when using an upload script:
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="ufile" />
<input type="submit" value="Upload" />
</form>
That it generated a "Browse" and an "Upload" button. I didn't have to design anything, and they had a cross platform look to them. What I'm wanting to know is if I have a file that I want the user to download is their a way to create a similar "Download" button to keep the look uniform on the page?