Sebastian Mendel wrote:
Hi,
$strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenAltered;
should become
sprintf($strTableAlteredSuccessfully, $table);
'Table %1 has been altered successfully'
or?
(i know in English it makes no difference, but in other foreign languages it could)
for Example in German it sounds better to use 'Die Tabelle' (the table) instead of just 'Tabelle' (table) in this case
-- Sebastian
I second that, it will sound better (at least in german). But what about "htmlspecialchars" ?