diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc
index 6954c4d..00bacdd 100644
--- a/core/includes/bootstrap.inc
+++ b/core/includes/bootstrap.inc
@@ -1967,6 +1967,14 @@ function drupal_anonymous_user() {
  * automatically runs the earlier phases as well. To access the Drupal
  * database from a script without loading anything else, include bootstrap.inc
  * and call drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE).
+ * 
+ * In order to bootstrap Drupal fully from another PHP script, you can include 
+ * this code:
+ * @code
+ * define('DRUPAL_ROOT', '/path/to/drupal');
+ * require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
+ * drupal_boostrap(DRUPAL_BOOTSTRAP_FULL);
+ * @endcode
  *
  * @param $phase
  *   A constant. Allowed values are the DRUPAL_BOOTSTRAP_* constants.
