echo $begrüßung;
error_reporting(E_ALL ^ E_NOTICE);
Oder mach ich was falsch? PHP 4.3.11, display_errors: On, error_reporting: 81, html_errors: On;
Du rechnest falsch. Für E_ALL ohne E_NOTICE musst du E_ALL AND NOT E_NOTICE rechnen und nicht E_ALL NOT E_NOTICE. Als Ergebnis sollte dann 2039 rauskommen.
echo "$verabschiedung $name";