Volume IX Number 1 Page 4
1999

INDEX

[HOME]

Training Program

Upcoming Empress Courses

In Toronto:

  • Mar 8-9 - DB Design
  • Mar 10-12 - DB Admin
  • Mar 22-23 - Advanced SQL
  • Mar 24-25 - Embedded SQL
  • May 3-5 - DB Admin
  • May 6-7 - DB Design
  • May 10-11 - Advanced SQL
  • May 12-13 - MR Routines
  • Jul 12-14 - DB Admin
  • Jul 15 - Intro to SQL
  • Jul 16 - Report Writer
  • Jul 19-20 - ODBC
  • Jul 21-22 - Hypermedia
  • Sep 13-15 - DB Admin
  • Sep 16-17 - DB Design
  • Sep 27-28 - Advanced SQL
  • Sep 29-30 - Embedded SQL

For complete schedule information or to register, please consule the Empress Web site, Customer Service at www.empress.com, or call the U.S. office at (301) 220-1919 or Canadian office at (905) 513-8888.

Support Corner, continue from page 2

cat esc_html.c
char* esc_html (char* string) {
  char* html_string;
  int length;
  int maxlength;
  char* ptr;
  length = strlen (string);
  maxlength = length *130;
  html_string = (char*)
  spmget (maxlength + 1);
  length = 0;
  for (ptr = string; *ptr; ptr++) {
    if (*ptr == '<') {
      strcat (html_string, "<");
      length += 4;
    } else if (*ptr == '&') {
      strcat (html_string,"&");
      length += 5;
    } else {
      html_string [length++] = *ptr;
      html_string [length] = 0;
    }
  }
  return html_string;
}

    For information about compiling and plugging in PSM modules into a database, refer to the last Empressions Technical Support Corner which is available online.

    In addition, for more advice about using Empress Hypermedia, consult a new column called HyperAction at http://www.empress.com/serv ices/hyperaction. Users can also drop a line at hyperaction@empress.com to request coverage of a particular Empress Hypermedia related issue.




EMPRESSIONS is published biannually as a service to clients and prospective customers of Empress Software. Reproduction of articles is not allowed without the written consent of Empress Software Inc.

For information on the products or companies covered in this newsletter, please contact Empress Software by telephone, fax, or e-mail, using any of the numbers listed below:
Empress Software Inc.
6401 Golden Triangle Drive
Greenbelt, Maryland
USA 20770
Tel: (301) 220-1919
Fax: (301) 220-1997
E-mail: sales@empress.com
Empress Software Inc.
3100 Steeles Avenue East
Markham, Ontario
Canada L3R 8T3
Tel: (905) 513-8888
Fax: (905) 513-1668
E-mail: sales@empress.com