diff --git a/lang/en/docs/coding.html b/lang/en/docs/coding.html index faad02f9d85..3b44a53dca0 100755 --- a/lang/en/docs/coding.html +++ b/lang/en/docs/coding.html @@ -38,6 +38,10 @@ the "lang/en" files and call them using get_string() or print_string().
  • All help files should be translatable - create new texts in the "en/help" directory and call them using helpbutton().
  • +
  • Incoming data from the browser (sent via GET or POST) automatically + has magic_quotes applied (regardless of the PHP settings) so that you can safely + insert it straight into the database. All other raw data (from files, or from databases) + must be escaped with addslashes() before inserting it into the database.
  •  

    Coding Style