donglaogu3788 2018-05-03 22:53
浏览 104
已采纳

选择特定单选按钮的值

We're trying to create a system where the selected radio(s) current file name will be pushed for future use.. this future use been the replacement of the last lines value.

Our frontend.php file (loops through each file and displays the amount of files worth of radio buttons next to the files data (table))

<?php
foreach($moduleFiles as $moduleFile) {
    $file = file($moduleFile);
    if ($file) {
        echo '<tr>';
        foreach($file as $lines)
        {
            echo  '<td>' . $lines . '</td>';
        }
        echo '<td>
        <form class="form-submit" method="post" action="includes/sendreview.php">
        <div class="form-check">
            <input class="form-check-input" type="radio" name="reviewbutton" value="'.$file.'">
        </div>
        </td>';
    }
    $files++;
}
?> 
</tbody>
</table>
<button type="submit" class="btn btn-secondary" >Send for Review</button>
</form>

and our backend.php file (line 8 = the last line of the file, in this case the "STATUS" of the module)

<?php 
    $myfile = "../files/modules/" . $_POST['reviewbutton']; 
    $selected = $_POST['reviewbutton']; 
    foreach($selected as $filetoopen)
    {
        foreach($myfile as $lines)
        {
            if ($line = 8)
            {
                fwrite($file, implode('', $lines)); 
                file_put_contents($file, "PROG", FILE_APPEND | LOCK_EX);
                fclose($myfile); 
            }           
        }   
    }       
?>

The idea was to get the button's "FILE" value from the "$_POST['reviewbutton']; " however that has the current output of "Array" when we're looking for the output of "filename.txt"

What am i doing wrong? This is my first time using radios with multiple possible selections.

EDIT -

I should have said...

Error on frontend.php =

Notice: Array to string conversion in C:\xampp\htdocs\modulemanager.php on line 52

line 52 = <input class="form-check-input" type="radio" name="reviewbutton" value="'.$file.'">

Error on backend.php =

Warning: Invalid argument supplied for foreach() in C:\xampp\htdocs\includes\sendreview.php on line 5
</div>
  • 写回答

1条回答 默认 最新

  • douzhi7451 2018-05-03 23:43
    关注

    Using the wrong variable. Had to change from $file to $moduleFile in frontend.php

    Backend loop was also incorrect, recoded it.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler