Heim > Artikel > Backend-Entwicklung > html5 - 使用php连接mysql返回的数据没有办法写在指定的html表格里
因为现实运行php,然后运行mysql,最后才是渲染html,所以先返回的数据不能写在指定的位置,应该怎么做
在返回的echo语句中我尝试加载tr td单元格,但是那个时候浏览器还没有渲染整体的html,所以不知道这个echo中的td 单元格放在哪里,能不能做到先组织好表格再填写数据进去。
非常感谢各位,我解决了问题,就是用echo把整个表单输出
<code>echo "<div class='\"container\"'> <table class='\"table' table-bordered table-hover> <caption>下载说明:点击文件名可查看影片简介。pc端/移动端点击<img src="%5C%22http://www.ttmeiju.com/templates/ttmeiju/images/d7.gif%5C%22" alt='\"百度云盘\"'>可以跳转至百度云转存下载;pc端点击<img src="%5C%22http://www.ttmeiju.com/templates/ttmeiju/images/d3.gif%5C%22" alt='\"磁力链高清美剧下载\"'>可跳转下载磁力链接,pc端点击<a href="%5C%22http://subhd.com/%5C%22">外挂字幕</a>可跳转只Sub HD下载rar字幕包。</caption> <thead> <tr> <th class='\"col-sm-1' hidden-xs>分类</th> <th class='\"col-sm-4' col-xs-5>名字</th> <th class='\"col-sm-3' col-xs-5>下载</th> <th class='\"col-sm-1' hidden-xs>大小</th> <th class='\"col-sm-1' hidden-xs>格式</th> <th class='\"col-sm-1' col-xs-2>语言</th> <th class='\"col-sm-1' hidden-xs>备注</th> </tr> </thead> <tbody> <tr> <td class='\"hidden-xs\"'>电影</td> <td><a href="%5C%22http://book.douban.com/subject/11588813/%5C%22">".$arr['name']."</a></td> <td><a href="%5C%22%22.%24arr%5B'baidu'%5D.%22%5C%22" title='\"百度云盘下载\"'><img src="%5C%22http://www.ttmeiju.com/templates/ttmeiju/images/d7.gif%5C%22" alt='\"百度云盘\"'>提取码:sbi9</a></td> <td class='\"hidden-xs\"'>".$arr['size']."</td> <td class='\"hidden-xs\"'>mp4</td> <td><a href="%5C%22http://subhd.com/%5C%22">内嵌双语字幕</a></td> <td class='\"hidden-xs\"'>720P</td> </tr> </tbody> </table> </div> <!--/.container --> ";</code>
这样输出后还是满足我预想的要求,谢谢大家帮忙。