PHP Classes

File: ImportSelect.php

Recommend this page to a friend!
  Classes of Stefan Kientzler   PHP vCard Library   ImportSelect.php   Download  
File: ImportSelect.php
Role: Auxiliary script
Content type: text/plain
Description: form to open vCard
Class: PHP vCard Library
Import and export contact lists in vCard format
Author: By
Last change: win test
Date: 1 year ago
Size: 705 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);

?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="ISO-8859-1">
<title>vCard Importtest Selection</title>
</head>
<body>
    <form action="ImportTest.php" target="_blank" enctype="multipart/form-data" method="post">
    <label for="vcfFile">import vCard - File:</label><br><br>
    <input type="file" id="vcfFile" name="vcfFile"><br><br>
        <label>
            <select name="encoding" size="1">
                <option selected value="UTF-8">UTF-8</option>
                <option value="Windows-1252">Windows-1252</option>
            </select>
        </label>Encoding<br><br>
    <input type="submit" value="import vCard">
    </form>
</body>
</html>