【PHP初心者の質問】同じページ上の2つのテーブルのコンテンツ出力をクエリしたいです
タイトルの通り、初心者の質問ですが、今ブログを作りたいのですが、ページ内で左側の列がType (ブログタイプ) を出力する必要があり、右側のコンテンツは INformational (ブログコンテンツ) を出力する必要があり、2 つのテーブルをクエリして出力する必要がありますが、while を使用すると常にエラーが報告され、クエリできないため、解決してください?
------解決策----------------------
行内で直接
<br /> <?php<br /> while($r=mysql_fetch_array($result1)){<br /> <p><strong>所有日志 <small>[1033]</small></strong></p><br /> <h3><strong>[置顶]<span class="text-danger">$r['tb_blog_title']</span>!</strong></h3><br /> <small class="text-muted">$r['tb_blog_date']</small><br /> <br><br /> <h2>$r['tb_blog_title']</h2><br /> <h4>$r['tb_blog_user']</h4><br /> <p>$r['tb_blog_content']</p><br /> <small class="text-danger"><a href="#">阅读全文>></a> </small><br /> <br><br /> <p class="text-warning"><a href="#">分类:$r['tb_blog_type'] </a> <br><font color='#FF8000'>------解决思路----------------------</font><br><a href="#"> 阅读(20101) </a> <br><font color='#FF8000'>------解决思路----------------------</font><br> <a href="#"> 评论(10)</a> </p><br /> }<br /> <br /> ?><br /> </div><br />
<br /><?php<br /> while($r=mysql_fetch_array($result1)){ ?><br /> <p><strong>所有日志 <small>[1033]</small></strong></p><br /> <h3><strong>[置顶]<span class="text-danger"><?php echo $r['tb_blog_title']; ?></span>!</strong></h3><br /> <small class="text-muted"><?php echo $r['tb_blog_date']; ?></small><br /> <br><br /> <h2><?php echo $r['tb_blog_title']; ?></h2><br /> <h4><?php echo $r['tb_blog_user']; ?></h4><br /> <p><?php echo $r['tb_blog_content']; ?></p><br /> <small class="text-danger"><a href="#">阅读全文>></a> </small><br /> <br><br /> <p class="text-warning"><a href="#">分类:<?php echo $r['tb_blog_type']; ?> </a> <br><font color='#FF8000'>------解决思路----------------------</font><br><a href="#"> 阅读(20101) </a> <br><font color='#FF8000'>------解决思路----------------------</font><br> <a href="#"> 评论(10)</a> </p><br /> <?php<br /> }<br /> <br /> ?><br /></div><br />