Advertisement
pan7nikt

ptaki\index.php

Mar 31st, 2022 (edited)
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=pl>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>ptaki</title>
  6.         <link rel="stylesheet" href="style.css" type="text/css">
  7.  
  8.         <!--Zainicjowanie jquery-->
  9.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  10.         <!--Skrypt wywołujący calculatePrice.php bez odświeżania strony-->
  11.         <!--Echo z PHP wyświetlane jest w znaczniku o id #result-->
  12.         <script>
  13.         $(document).ready(function(){
  14.             $("#selectedPowiat").change(function(){refreshTable();});
  15.  
  16.  
  17.             function refreshTable(){
  18.                 //debug
  19.                 //alert("cos jest wpisane");
  20.  
  21.                 $.ajax({
  22.                     url: 'table.php',
  23.                     type: 'post',
  24.                     data: {powiat: $("#selectedPowiat").val()},
  25.                     success: function(result){
  26.                         $("#result").html(result);
  27.                     }
  28.                 });
  29.             }
  30.         });
  31.         </script>
  32.  
  33.     </head>
  34.     <body>
  35.     <div id="kontener">
  36.         <div id="banner">
  37.             <a href="kwerenda1.png">Kwerenda 1</a>
  38.             <a href="kwerenda2.png">Kwerenda 2</a>
  39.             <a href="kwerenda3.png">Kwerenda 3</a>
  40.             <a href="kwerenda4.png">Kwerenda 4</a>
  41.         </div>
  42.  
  43.         <div id="lewy">
  44.             <div id='obraz'>
  45.             <img src='ptak.jpg' alt='ptak' id="obrazek">
  46.             </div>
  47.         </div>
  48.         <div id="prawy">
  49.             <?php include 'script.php'?>
  50.             <br>
  51.             <span id="result"></span>
  52.         </div>
  53.         <div id="stopka">
  54.             Autor: Mateusz Ignaczak
  55.         </div>
  56.     </div>
  57.  
  58.     </body>
  59.  
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement