私はこれを持っています。
<?php
$SQLbrands="SELECT * FROM brands";
$runBrands=mysqli_query($db, $SQLbrands) or die ("SQL Error");
$noRow=mysqli_num_rows($runBrands);
echo "<table border='0' cellspacing='0' cellpadding='1' id='brndTable1' class='brndTable1'>";
echo "<thead><tr><th class='brT11'>Brand Name</th><th class='brT21'>Variant</th><th class='brT31'>SKU</th>
<th class='brT41'></th></tr></thead>";
echo "<tbody>";
while ($reK = mysqli_fetch_array($runBrands))
{
$wec = $reK['id']; $wec2 = $reK['bvariant']; $wec3 = $reK['bsku'];
echo "<tbody class='colormine'><tr>";
echo "<td class='brT1'>".$reK["bname"]."</td>";
echo "<td class='brT2'>".$reK["bvariant"]."</td>";
echo "<td class='brT3'>".$reK["bsku"]."</td>";
echo "<td class='brT4'><input type='checkbox' name='delz[]' value='$wec' ></td>";
echo "</tr>";
}
echo "</tbody>";
echo "</table>";
?>
結果を単一の変数に入れることはできますか? したがって、変数をエコーすると、同じものが印刷できるはずです!