本文整理汇总了PHP中HtmlInput::extension方法的典型用法代码示例。如果您正苦于以下问题:PHP HtmlInput::extension方法的具体用法?PHP HtmlInput::extension怎么用?PHP HtmlInput::extension使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HtmlInput
的用法示例。
在下文中一共展示了HtmlInput::extension方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ISelect
$select_cat = new ISelect('fd_id');
$select_cat->value = $cn->make_array('select fd_id,fd_label from fiche_def where frd_id=' . FICHE_TYPE_CLIENT);
echo $select_cat->input();
echo HtmlInput::submit('display_prop', 'Afficher les propriétés');
echo '</FORM>';
// on choisit d'afficher les propriétés avant de confirmer l'import
// get parce qu'on interroge
if (isset($_GET['display_prop'])) {
$a = new Fiche($cn);
$prop = $a->to_array($_GET['fd_id']);
foreach ($prop as $key => $value) {
echo "Index : {$key} valeur {$value} <br/>";
}
echo '<form method="POST" action="extension.php" enctype="multipart/form-data">';
echo dossier::hidden();
echo HtmlInput::extension();
echo HtmlInput::hidden('fd_id', $_GET['fd_id']);
$file = new IFile('fichier_csv');
echo $file->input();
echo HtmlInput::submit('start_import', 'Démarrez importation');
echo '</form>';
exit;
}
// Il est demandé de démarrer l'importation
// Post parce qu'on sauve
// On image que le fichier CSV n'a que 4 champs
// "nom client","prenom client", "numero client","adresse client"
//
if (isset($_POST['start_import'])) {
$fd_id = $_POST['fd_id'];
$tmp_file = $_FILES['fichier_csv']['tmp_name'];