script language="javascript" type="text/javascript">
function moveNumbers(num) {
if(document.getElementById("selector").checked){
var txt=document.getElementById("result").value;
txt=txt + num;
document.getElementById("result").value=txt;
}
else{
document.getElementById("result").value=txt="";
}
}
</script>
<textarea id="result" name="image_id" rows="8" cols="11" readonly>
</textarea>
<tr>
<?php
$path = "photos/";
$dir_handle = @opendir($path) or die("Unable to open folder");
echo "<table height='500px'width='800px'align='center'border='1'>";
echo "<tr>";
while (false !== ($file = readdir($dir_handle))) {
if($file == "index.php")
continue;
if($file == ".")
continue;
if($file == "..")
continue;
{
echo ($x % 6 == 0) ? "</tr><tr>" : "";
echo "<td><input type='checkbox' id='selector' value='$file' onclick='moveNumbers(this.value)'>
<img src='photos/$file'alt='$file' style='height:auto;width:50%;'alt='$file'>
<br>
$file
</td>";
$x++;
}
}
echo "</tr>";
echo "</table>";
closedir($dir_handle);
?>
こんにちは、チェックボックスに少し問題があります。PHP パーツには、画像ファイルの横にチェック ボックスが表示されます。私が抱えている問題は、チェックボックスのあるリストの最初の画像だけがテキスト入力をテキスト領域に追加することです。最初のチェック ボックスが選択されると、他のチェック ボックスは機能しますか? 何か案は?乾杯。