php を使用して次の HTML をエコーし、H2 テキストと P テキストを sqlquery に格納された結果に置き換える方法はありますか?
<article class="frEvent" onclick="loadPopup('#frpopup1')"> <!-- Documented within the linked script file. -->
<h2 class="frEventHeadline">FR Event</h2>
<hr class="frEventDivider">
<p class="frEventTagLine">25/12/2012</p>
</article>
$sqlget = "SELECT * FROM frEvents WHERE date >= DATE(now());";
$sqldata = mysqli_query($dbcon, $sqlget) or die('error getting service listings');