I have a file uploaded in my site so that the user can upload an image by clicking on the browse button. I want to have a default address in here but I cant seem to be able to store the default address and keep the browse button.
Here is my code:
<input type="hidden" style="width: 394px; height: 22px" size="60" name="MAX_FILE_SIZE" value="204800">
<input value="<?php echo("$image"); ?>" name="film_image" size="42" type="file">
Which displays :
---textarea---------------(button)Browse…
and
the code:
<input type="hidden" style="width: 394px; height: 22px" size="60" name="MAX_FILE_SIZE" value="204800">
<input value="<?php echo("$image"); ?>" name="film_image" size="42">
Which displays :
---textarea(displaying my address)-----
but no button for browse appears.
Can someone please please tell me how I can do this
Kind Regards