There is a query to the table
$result = mysql_query('SELECT * FROM `SS_products`', $conn); // запрос на выборку In the table there are 2 columns name and enabled, you need to display only those names, which enabled is not equal to 0. Tried so, does not show anything at all.
while($row = mysql_fetch_array($result)) { if $row['enabled'] <>0 { echo $row['name'].'<br>' ;// выводим данные }}