1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

$text[1] = "<br>La maggior parte dei sudditi crede di essere tale perché il re è il Re, non si rende conto che in realtà è il re che è Re perché essi sono sudditi<br>";
$text[2] = "<br> La soppressione della proprietà privata rappresenta la completa emancipazione di tutti i sensi e di tutti gli attributi umani; ma è un' emancipazione siffatta perchè questi sensi e questi attributi sono diventati umani, sia soggettivamente che oggettivamente.<br>";
$text[3] = "<br>Solo con lo studio del patologico si arriva a comprendere il normale.<br>";
$text[4] = "<br>GNU's Not UNIX<br>";
$text[5] = "<br``Free software'' is a matter of liberty, not price. To understand the concept, you should think of ``free'' as in ``free speech,'' not as in ``free beer.''<br>";
$text[6] = "<br>The freedom to study the source code and change it to do what you wish.<br>";
$text[7] = "<br>m@ |>0|2c0 !1 |)!0 |)&m0n!0<br>"
// Genera un numero "casuale"
$num = rand(1, count($text));
floor($num);

// Mostra il teso assocciato con il numero
echo $text[$num];
?>