PHP Classes

File: form.html

Recommend this page to a friend!
  Classes of Evert Ulises German Soto   cURL Easy and Fast   form.html   Download  
File: form.html
Role: Example script
Content type: text/plain
Description: You can upload file with any parameters.
Class: cURL Easy and Fast
Send HTTP request to remote servers using Curl
Author: By
Last change:
Date: 11 years ago
Size: 433 bytes
 

Contents

Class file image Download
<html>
<head>
</head>
<body>
    <form method="post" name="lForm" action="upload.php" id="lForm" enctype="multipart/form-data">
        <div>
            <div>Name </div>
            <input name="txt_name" value="" type="text">
        </div>
        <div>
            <div>File </div>
            <input name="file_any" value="" type="file">
        </div>
        <br/>
        <div>
            <input class="button" name="submit" value="Save" type="submit">
        </div>
    </form>
</body>
</html>