从表单变量创建可点击链接

时间:2011-10-10 15:14:14

标签: php forms variables post hyperlink

使用动态页面 1.生成文件夹中的文件列表 2.制作该列表的选择框 3.提供指向所选文件的可点击链接

步骤1和2像魅力一样工作,但我似乎无法通过该变量并使其成为可点击链接。

这是我的代码:

<?php

// Step 3. Create clickable link from selection
if (isset($_POST['submit'])) {

$optionVal = $_POST[$file];
echo '<a href="'.$optionVal.'">Click to download: <strong>'.$optionVal.'</strong></a>';
} else {

// Step 1: Get file listing 
$show_path = 1;   # Show local path.
$show_dotdirs = 1;   # Show '.' and '..'.
$path = substr($_SERVER['SCRIPT_FILENAME'], 0, strrpos($_SERVER['SCRIPT_FILENAME'], '/') + 1);

$dirs = array();
$files = array();

$dir = dir($path);
while ($entry = $dir->read()) {
    if (($entry != '.') and (substr($entry, -4) != '.php')) {
        if (is_dir($entry)) {
            if (($entry != '..') or $show_dotdirs){
                $dirs[] = $entry;
            }
        } else {
            $files[] = $entry;
        }
    }
}
$dir->close();
?>
<form action="pagelist.php" method="post">
<label>Select your lab: <select name="lab">
<?php
// Step 2: Make file listing in to selection box
sort($files);
foreach ($files as $file) {
    echo('<option value="'.$file.'">'.$file.'</option>');
}
?>
</select></label>
<input name="submit" type="submit" value="Go">

</form>

<?php } ?>

2 个答案:

答案 0 :(得分:1)

您应该更改此行:

$optionVal = $_POST[$file];

分为:

$optionVal = $_POST['lab'];

答案 1 :(得分:1)

$optionVal = $_POST[$file];是你的问题。这应该是$optionVal = $_POST['lab'];