form?


  
      function include_form()
      {
          ob_start();
          include_once 'url_form.inc';
          form_html = ob_get_contents();
          ob_end_clean();
          this->response_body = preg_replace("#\<body(.*?)\>#si", "$0\nform_html", this->response_body, 1);
      }