How can I add a HTML code to My Yahoo homepage?

Where can I find html code to add to my site so a customer can upload a graphic file to me? Other ideas?

  • I have a new business and want my clients to be able to send photos as needed, but I am not experienced with html and am currently using Yahoo's sitebuilder software.

  • Answer:

    That can't be done with HTML and would require some type of server side software. There is no way a person can upload anything to a web site directly.

Donna D at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Create an HTML form and define the enctype. Like this : <form action="uploadmyimage.php" name="images" method="post" enctype="multipart/form-data"> <input type="file" name="fileupload" size="30"> <input type="submit" value="Send"> Then you'll need to create a file called uploadmyimage.php in order to grab the image, copy it to a temp directory on your server, then move it to a permenant location. This is just the tip of the iceburg. Your php needs to validate for file type, file size, eof errors, file name, etc. I would also ask for an email address, and then have your php create a directory with that string, and dump the image in there. Your php will need to use the $_FILE array.

dave_h4

you need dynamic programming language like php, asp, .net etc... not just html. coz html and javascript is just static.

xeo_2004

Download Mozilla's Seamonkey (free), it will generate the HTML code for you.

Heinz M

What you need is called a "blob" which is a database entry type for file streams, like graphics files. Any type of programming code that can be interlaced with HTML forms such as java and .NET can be used to do this.

David T

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.