Advertisement
Guest User

Untitled

a guest
May 1st, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1.  
  2. <?php
  3. include_once './inc/head.php';
  4. include_once './inc/header.php';
  5. include_once 'class/Find.php';
  6. ?>
  7.  
  8.  
  9. <main>
  10. <div class="left-column fl">
  11. <?php
  12. $result = "empty";
  13. $f = new Find();
  14.  
  15. if(isset ($_POST["search"])){
  16. //echo $_POST["search"];
  17. $result = $f->find($_POST["search"]);
  18. }
  19. ?>
  20. <article class="search">
  21.  
  22. <form action="#" method="post">
  23. <!--<input type="text" name="search" class="fl" id="keyword" placeholder="Zadejte hledaný název" list="datalist">-->
  24. <input type="text" value="" placeholder="Search" id="keyword" list="datalist">
  25. <div id="results">
  26. </div>
  27. <!--<input type="submit" value="Vyhledej" class="fl submit">-->
  28. <div class="clear"></div>
  29. </form>
  30.  
  31.  
  32. <?php
  33.  
  34. if(isset($_GET["tags"])){
  35. echo $f->findTagsInContents($_GET["tags"]);
  36. }else if (isset ($_GET["author"])){
  37. echo $f->findAuthorInContents($_GET["author"]);
  38. }
  39. if($result == ""){
  40. echo "<span style=\"position:relative; display: block; width: 100%;margin-bottom: 10px;\"></span>";
  41. echo "Nebyly nalezeny žádné výsledky";
  42. }else if($result != "empty"){
  43. echo $result;
  44. }
  45. ?>
  46. </article>
  47.  
  48. </div>
  49. <div class="right-column fr">
  50.  
  51. <?php
  52. include_once './inc/popular-posts.php';
  53. include_once './inc/advertisment-1.php';
  54. include_once './inc/tweets.php';
  55. include_once './inc/video.php';
  56. include_once './inc/advertisment-2.php';
  57. include_once './inc/tags.php';
  58. include_once './inc/archives.php';
  59. ?>
  60.  
  61. </div>
  62. <div class="clear"></div>
  63. </main>
  64.  
  65. <?php
  66. include_once './inc/footer.php';
  67. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement