message function has 2 variants:
message
Shows a text on browser.
void message(char messageText);
char messageText
message('Hello world');
Shows a text on browser with title and style.
void message(char messageTitle, char messageText, char messageType);
char messageTitle
char messageType Possible values are notice,error, info, success
char messageType
notice
error
info
success
message('For Your Information', 'Hello world', 'info');
Shows a text on browser with title in info messageType style.
info messageType
void message(char messageTitle, char messageText);
message('For Your Information', 'Hello world');
Last updated 5 years ago
Was this helpful?