php不使用js将数据发送到modal

vybvopom  于 2021-09-29  发布在  Java
关注(0)|答案(0)|浏览(225)

我在学习 PHP 如果我使用java脚本,我会得到一个0;因此有限制。
所以我需要通过一个独特的考试 $row["userName"] 从锚定标签到 modal .

// I can use my $row["userName"] here to give each profile, an edit button unique to them.
echo    '<span class="pull-right text-muted">
                                        <a class="" href="#" data-toggle="modal" data-target="#adminEdit" onclick="" >
                                            <i class="fa fa-edit"></i> Edit user
                                        </a>
                                    </span>';

我需要这个 $row[userName] 显示在用户名中 input :

echo '<div id="adminEdit" class="modal fade" tabindex="-1" role="dialog">
            <div class="modal-dialog" role="document">
                <form role="form" method="post" action="profiles.php?from=pictureUpload" enctype="multipart/form-data">
                <div class="modal-content">
                    <div class="modal-header">
                        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
                        <h4 class="modal-title">Admin editor</h4>
                    </div>
                    <div class="modal-body">
                            <div class="form-group">
                                <label>Username</label>
                                <input class="form-control disabled" disabled value="   ---  RIGHT HERE ---">
                            </div>

// More stuff below omited for sizing reasons.

目前我正在考虑把我的 modal 从…里面 echo ; 但是我不知道怎么通过考试 $row[] 从标记到模态
如果有任何想法,我将不胜感激,因为我自己也很努力~谢谢:)

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题