<?php
class Persona
{
// attributi
public $nome;
public $cognome;
public $eta;
//costruttore
public function __construct($nome,$cognome,$eta)
{
$this->nome = $nome;
$this->cognome = $cognome;
$this->eta = $eta;
}
public function rigaTitolo()
{
return
"<tr><td>Nome</td>"
."<td>Cognome</td>"
."<td>Eta</td></tr>";
}
public function rigaUtente($u)
{
return
"<tr><td>".$u->nome ."</td>"
."<td>".$u->cognome."</td>"
."<td>".$u->eta ."</td></tr>";
}
}
$utenti = array();
//echo "<table>";
$utente = new Persona("aldo","qwerty","40");
$utenti[] = $utente;
//echo $utente->rigaUtente($utente);
$utente = new Persona("giovanni","asdfgh","50");
$utenti[] = $utente;
//echo $utente->rigaUtente($utente);
$utente = new Persona("giacomo","zxcvbn","60");
$utenti[] = $utente;
//echo $utente->rigaUtente($utente);
//echo "</table>";
echo "<table>".$utente->rigaTitolo();
foreach($utenti as $utente)
{
echo $utente->rigaUtente($utente);
}
echo "</table>";
?>