donglaogu3788 2018-05-03 14: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 15:43
    关注

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

    Backend loop was also incorrect, recoded it.

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部