i want to make a crical repot that notifies the admin if the products in inventory is running out lol. need some help :)
<?php include ('config.php'); ?>
<?php
$result=mysql_query("select * from inventory");
$num=mysql_num_rows($result);
$qtyleft=['qtyleft'];
$name=['name'];
if($qtyleft <= 5){
while ($row=mysql_fetch_array($result, MYSQL_ASSOC)){
echo '<span>'.$name.'</span>';
echo "almost out of stock";
}}
?>