
How can I allow file uploads to my web site?

Hi,
You can create a file upload field with the following HTML:
<input type="file" name="myfile">
Example:
<html>
<head>
<title>File UpLoad </title>
</head>
<body>
<form method="POST" enctype="multipart/form-data action="">
<input type="file" name="fileUrl" />
<input type="submit" name="submit" value="Upload " />
</form>
</body>
</html>

Hi,
You can create a file upload field with the following HTML:
<input type="file" name="myfile">
Example:
<html>
<head>
<title>File UpLoad </title>
</head>
<body>
<form method="POST" enctype="multipart/form-data" action="">
<input type="file" name="fileUrl" />
<input type="submit" name="submit" value="Upload " />
</form>
</body>
</html>