Product Receiving Detail



"; echo ""; echo "DateItem Code Name Detail Price Quantity Total "; echo ""; if (mysqli_num_rows($results) != 0) { // displaying records. while ($row = mysqli_fetch_array($results)) { echo ""; echo "".$row['receiving_date']."".$row['product_code']. "" .$row['product_name']. "" .$row['product_detail']. "".$row['price']. "".$row['qty']. "".$row['total']. ""; echo ""; } echo ""; } else { echo "No records are found."; } echo "
";// displaying paginaiton. echo pagination($statement,$per_page,$page,$url='?'); ?>