Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. <html>
  3. <body>
  4.  
  5. <?php
  6. class samojazd {
  7. // Properties
  8. public $model;
  9. public $marka;
  10. public $przebieg;
  11. public $silnik;
  12.  
  13. // Methods
  14. function set_name($model) {
  15. $this->model = $model;
  16. }
  17. function get_model() {
  18. return $this->model;
  19. }
  20. }
  21. ?>
  22. model<input type="text" name="model"><br>
  23. marka <input type="text" name="marka"><br>
  24. przebieg <input type="text" name="przebieg"><br>
  25. silnik <input type="text" name="silnik"><br>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement