Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. function wczytaj($zmienna)
  3. {
  4. if (!isset($_GET[$zmienna]) || $_GET[$zmienna]=="")
  5. die( "Blad! brak zmiennej: ".$zmienna ); // nie podano marki w $
  6. return $_GET[$zmienna];
  7. }
  8.  
  9. $baza = new mysqli("localhost", "root", "", "test");
  10. if (mysqli_connect_errno()) die( "Blad: ".mysqli_connect_error() );
  11. $baza->set_charset("utf8");
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement