I have this code:
PHP Code:
new helplenght=1000
new help[1001]
new len
len=format(help,helplenght, "<!DOCTYPE HTML PUBLIC ^"-//W3C//DTD HTML 4.01 Transitional//EN^" ^"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd^">")
len+=format(help[len],helplenght-len, "<html>")
len+=format(help[len],helplenght-len, " <head>")
len+=format(help[len],helplenght-len, " <title>shDM:Heroes</title>")
len+=format(help[len],helplenght-len, " </head>")
len+=format(help[len],helplenght-len, " <body>")
len+=format(help[len],helplenght-len, " <h1>Welcome to shDM:Heroes!</h1>")
len+=format(help[len],helplenght-len, " </body>")
len+=format(help[len],helplenght-len, "</html>")
show_motd(id,help,"shDM Help")
When I use this command I see the code not the HTML page. What's wrong???
__________________