PHP从复选框中获取选定的表行

时间:2014-12-07 14:01:09

标签: php checkbox html-table

我有一个PHP表单,其中创建了服务器上文件夹中所有文件的表,并为每个创建的行分配了一个复选框,用于决定要删除或共享哪些文件等。每行都是给出一个名称checkbox[$rownumber]以区分每个,然后当点击一个按钮时,暂时确保我可以使它工作,它只打印所选的行 - 但我无法使这个工作

最初,当从服务器在表中创建行时,这是代码,正确地按照我的意愿创建它们

<?php
if(isset($_REQUEST['deleteFile']))  
{var_dump($_REQUEST);
    if(isset($_POST['checkbox']))
    {

        print_r($_POST);
    }
}
?>

<form name="mainHomescreen" action="MainHomescreen.php" method="POST">
<nav>
    <input type="text" name="Search" value="Search" style = "color:#888;" onFocus="inputFocus(this)" onBlur="inputBlur(this)"/>
</nav>

<sidebar>
<input type="button" value="Create Folder" onClick="createFolder()"/>
<input type="button" value="Download Selected Files/Folders" onClick=" "/>
<input type="button" value="Encrypt Selected" onClick="encrypt()"/><br>
<input type="button" value="Share Selected" onClick="shareFolder()"/>

<!-- upload a file -->
<div id="fileUpload">
    <div id="uploadPopup">
    <form action="<?php echo $_SERVER['PHP_SELF']; ?>" id="uploadForm" method="post" name="uploadForm" enctype="multipart/form-data">

        Select file to upload: <input name="fileUpload" type="file" /><br />
        <input type="submit" value="Upload File" name="submitFile"/>
    </form>
    </div>
</div>
<input type="button" name="upload" value="Upload File" onClick="showUpload()"/>
<input type="submit" value="Delete" name="deleteFile"/>
<input type="button" value="Rename" onClick=" "/><br>
<input type="button" value="Password Protect Folder/ File" onClick=" "/><br><br>
</sidebar>
<article>
<span class="error"><?php echo $error;?></span>
<table id="detailView" style="width:100%">
<!-- php to create table -->
<?php
//open file names
$dir = opendir("/home/a1962403/public_html/files");

$filearray = array(array(array()));

echo '<table cellpadding="10" cellspacing="0" style="width:100%">';
echo '
<tr>
    <th> </th>
    <th>File</th>
    <th>Date</th>
    <th>Size</th>
</tr>
';

$rownumber = 0;

  //List files in directory
  while (($file = readdir($dir)) !== false)
   {
    //gets the file date, string needed decoding otherwise throws error.

    $date = @filemtime($file);
    $date = date("F d Y H:i:s.", filemtime(utf8_decode("/home/a1962403/public_html/files/$file")));

    $size = filesize("/home/a1962403/public_html/files/$file") . ' bytes';

    $rownumber = $rownumber + 1;

    //prints a table row
    echo '<tr class="bottomline">';
    echo "<td><input type='checkbox' name='checkbox[$rownumber]' value='[$rownumber]' </td>";
    echo "<td>$file</td>";
    echo "<td>$date</td>";
    echo "<td>$size</td>";
    echo '</tr>';
}
echo '</table>';
closedir($dir);
?>
</article>
</form>

</body>
</html>

从这个开始,我有一个名为&#39; deleteFile&#39;的提交按钮,正如我刚才所说,我想要使用它,只需获取所选内容以确保其正常工作,但它是&#39;实际上并没有给我任何输出,所以任何帮助都会非常感激。

2 个答案:

答案 0 :(得分:0)

在确定是否选中了复选框时,您使用isset是正确的,但您使用的是不同的名称:

isset($_POST['checkbox'])
如果

将返回true

<input type="checkbox" name="checkbox" />

已经过检查。

您必须使用$_POST数组中的名称来引用发布的输入。


在这种情况下,您需要检查checkbox[$rownumber],这看似微不足道,要求您在发布时知道行号:

PHP代码

if (isset($_POST["checkbox[$rownumber]"]))
{
    // This checkbox is checked
}

如果您不知道确切的输入名称,可能需要遍历$_POST数组:

PHP代码

foreach ($_POST as $input_name => $input_value)
{
    if (strpos($input_name, 'checkbox') !== false)
    {
        // This input's name contains the substring 'checkbox'
    }
}

请注意strpos上的类型严格比较。

答案 1 :(得分:0)

您的行格式可能是问题

echo "<td><input type='checkbox' name='checkbox[$rownumber]' value='[$rownumber]' </td>";

将其更改为:

   echo "<td><input type='checkbox' name='checkbox[" . $rownumber . "]' value='". $rownumber . "' </td>";

因为您的编号从0开始,您也可以使用checkbox[]作为名称。

这对此表格有帮助。