Loading Gif. File Upload PHP?

QuizCall

New member
I have made myself a file uploading script and I have an animated gif I would like to show below the upload button when it is clicked. Is that possible if so how?
 
<img src="pathtoimage.gif"> or use javascript


<head>
<script type="javascript">
function show_me(){
document.getElementById("hime").style.visibility="visible";
}
</script>
</head>
<input type="submit" id="Submit" value="Submit" onClick="javascript:showme();">
<div id="hime"><img src="pathtopic.gif"></div>
 
Back
Top