Error 404 - Page cannot be found

The page you are trying to find cannot be found

'; $contentside = ''; $layout = 'f'; // Display the page // 1. Send the correct HTTP status code http_response_code(404); // 2. Prevent search engines from indexing this page header("X-Robots-Tag: noindex, nofollow", true); include('include/head.php'); echo '

Our Products

    '; $sql="SELECT * FROM sections WHERE ID>'0' ORDER BY weight"; $result=$db->getdata_safe($sql); foreach($result AS $row){ echo "
  • ".stripslashes($row['section'])."
  • "; }; echo '
'; if($layout=='l') { echo '
'.$content.'
'.$contentside.'
'; } elseif($layout=='r') { echo '
'.$content.'
'.$contentside.'
'; } elseif($layout=='m') { echo '
'.$content.'
'.$contentside.'
'; } else { echo '
'.$content.'
'; } echo '
'; include('include/footer.php'); ?>