P22DX

Google

Mar 11th, 2018
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.46 KB | None | 0 0
  1. <?php
  2. $q=$_POST['kueri'];
  3. if($_POST['submit'] == "Search") {
  4.     if($q == '') {
  5.     $q='How To Be Normal';
  6.     }
  7.     $q=rawurlencode($q);
  8. header('location:https://google.com/search?q='.$q);
  9. }
  10. ?>
  11. <title>Google Search</title>
  12. <style>
  13. form{
  14.     text-align:center;
  15. }
  16. input{
  17.     border: none;
  18.     padding: 10px;
  19.     margin: 10px;
  20.     height: 40px;
  21.     width: 500px;
  22.     border:1px solid #eaeaea;
  23.     outline:none;
  24.     }
  25.     input:hover{
  26.     border-color: #a0a0a0 #b9b9b9 #b9b9b9 #b9b9b9; }
  27.     input:focus{ border-color:#4d90fe; }
  28.     input[type="submit"] {
  29.     border-radius: 2px;
  30.     background: #f2f2f2;
  31.     border: 1px solid #f2f2f2;
  32.     color: #757575;
  33.     cursor: default;
  34.     font-size: 14px;
  35.     font-weight: bold;
  36.     width: 100px;
  37.     padding: 0 16px;
  38.     height:40px;
  39.     }
  40.     input[type="submit"]:hover {
  41.     box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  42.     background: #f8f8f8;
  43.     border: 1px solid #c6c6c6;
  44.     box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  45.     color: #222;
  46.     }
  47.     .footer{
  48.     position: fixed;
  49.     width: 100%;
  50.     bottom: 0px;
  51.     font-family: Tahoma;
  52.     height: 20px;
  53.     color: gray;
  54.     font-size: 20px;
  55.     left: 0px;
  56.     border-top: 2px solid darkred;
  57.     padding: 30px;
  58.     background-color:white;
  59.     }
  60. </style>
  61. <form method="POST">
  62. <center>
  63. <img src="https://www.betterbuys.com/wp-content/uploads/2015/06/Google-1.png" height="300px" width="300px"/>
  64. </center>
  65. <input type="text" name="kueri" placeholder="Search Something?" />
  66. <input type="submit" name="submit" value="Search" />
  67. </form>
  68. <div class="footer">
  69. <b>© Cvar1984, 2018</b>
  70. </div>
Add Comment
Please, Sign In to add comment