|
<%
function changechr(str)
str=server.htmlencode(str)
str=replace(str,chr(39),"")
str=replace(str,vbcrlf,"<br>")
str=replace(str,chr(13),"<br>")
changechr=str
end function
action=request("action")
if action="add" then
book_name=request("book_name")
book_mood=request("book_mood")
book_content=changechr(request("book_content"))
dddd = year(now()) & "-" & month(now()) & "-" & day(now())
帮我看看呀 |
|