Facebook
From Crippled Gorilla, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 127
  1. <?php
  2.  
  3. class samochody {
  4.     public $marka;
  5.     public $model;
  6.     public $przebieg;
  7.     public $ilePaliwa;
  8.  
  9.     function __construct() {
  10.         $this->nazwa = $_POST['marka'];
  11.         $this->waga = $_POST['model'];
  12.         $this->wymiar = $_POST['przebieg'];
  13.         $this->kolor = $_POST['ilePaliwa'];
  14.     }
  15. }
  16.  
  17. $element = new material();
  18.  
  19. $element->zapiszPlik();
  20. $element->otworzPlik();
  21.  
  22. echo '<a href="index.html">Dodaj nowe</a>';
  23.  
  24. ?>