Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbserverprogrammering/exercises/klasser/

klasser1.php
klasser2.php
klasser3.php
klasser4.php
klasser5.php
klasser6.php
klasser7.php

klasser1.php

30 lines UTF-8 Windows (CRLF)
<?php
error_reporting
(-1);
ini_set('display_errors'1);
ini_set('output_buffering'0); 
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Klass</title>
</head>

<body>
<?php 
class Boll {
   public 
$färg="";
   public 
$radie=0;
}
$boll = new Boll();


$boll->färg="Röd";
$boll->radie="10";

// skriv ut informationen om vår boll:
echo 'Färg: ' $boll->färg ' <br>'.'Radie: ' $boll->radie;

?>
</body>
</html>