tpl_rename.php

来自「一款文件上传程序」· PHP 代码 · 共 20 行

PHP
20
字号
<!-- 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 + =
减小字号Ctrl + -
显示快捷键?