Code:
<?php
$con=mysqli_connect(host,username,password,dbname);;
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT * FROM zen_products_description")
WHERE products_description='NULL'");
echo "<table border='0'>
<tr>
<th>Origin</th>
<th>Suitability</th>
</tr>";
while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row[''] . "</td>";
echo "<td>" . $row[''] . "</td>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>
That's what I have so far. Of course the red will be edited with my info.
Now, I guess the major question is, will that work or am I missing something?
( Should create blank "cells" under, "origin" & "Suitability" where I will add that info in the add product page description )