I can’t get the value of the post in the following code:
<form method="POST" action="files.php">
<table width="560" cellspacing="2" cellpadding="2" border="0">
<tr>
<td>
<!-- path -->
<table class="files">
<tr>
<td><b><?= filesList(); ?></b></td>
</tr>
</table>
<!-- path -->
</td>
</tr>
<tr>
<div align="center">
<input name="delete" type="submit" value="delete">
</div>
</form>
//the function show all the files in a directory
function filesList()
{
$selfiles=array();
$file=array();
...
echo ' <td><input type=checkbox method="post" name="selfiles[]" value='.$file["name"].' > ' . icon($files[$i]) .$files[$i]."><font><br/></a></td>\n";
...
}
In the files.php i can´t get the value or the name of that files, can some one help me?