Advertisement
Guest User

qqq

a guest
Sep 17th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $sql = "INSERT INTO uczniowie (imie, nazwisko, klasa, obecnosc, oceny)
  2. VALUES ('$imie', '$nazwisko', '$klasa', '$obecnosc', '$ocena')";
  3. if ($conn->query($sql) ===TRUE)
  4. {
  5. echo 'Raport aktywny';
  6. }
  7. else
  8. {
  9. echo "..." . $sql . $conn->error;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement