<html>
 <head>
  <?php
   $TITLE    = 'Search';
   $SUBTITLE = 'SubflexionPages';
   include('style.php');
  ?>
 </head>
 <body>
  <div class="content-wrapper">
   <?php include('navbar.php'); ?>
   <?php include('heading.php'); ?>
   <div class="container">
   <p>
   <br>
   <p>
   <h3>Search results for "<?php echo "${_GET['kw']}"; ?>"</h3>
   <p>
   <br>
<?php
    if (isset($_GET['kw']))
    {
        $results = shell_exec("`pwd`/search.sh \"{$_GET['kw']}\"");
        echo "$results";
    }
?>
   </div> <!-- end of container -->
  </div> <!-- end of content-wrapper -->
  <?php include('footer.php'); ?>
 </body>
</html>



