⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tpl_rename.php

📁 一款文件上传程序
💻 PHP
字号:
<!-- tpl_rename.php -->

<h1>File rename</h1>

<p>Please use letters and numbers only. Some special characters are allowed.</p>

<?php /* Errors will be printed here */ if ( isset ( $error ) ) print $error; ?>

<form method="post" action="myfiles.php?action=rename&amp;file=<?=$file_path?>" id="rename_form">
    <input type="hidden" name="action" value="rename" />
    <input type="hidden" name="task" value="rename" />
    <input type="hidden" name="file_path" value="<?=$file_path?>" />

    <p style="margin-top:10px;">
        <input type="text" name="file_name" value="<?=$file_name?>" size="55" maxlength="100" />
        <input type="submit" class="blue_button"  value="Rename file" />
        <input type="button" class="blue_button"  onclick="go('<?=$cancel_url?>');" value="Cancel" />
    </p>
</form>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -