Può darsi che l'hoster abbia levato tutti i notices
,
Di default, nel file di configurazione PHP.ini questa direttiva è settata su off
Se stai lavorando in locale (cosa consigliabile anche a scopo didattico), modifica il php.ini(riga 284) in questo modo
codice:
error_reporting = E_ALL
; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below). Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = On
Altrimenti devi procurarti un editor che faccia il parsing e il debug dei tuoi script. Che io sappia Zend Studio lo fa, l'unica controindicazione è che questo è un software propiretario a pagamento.