ID:270446
 
Code:
mob/Login()
..()
usr<<browse(\
{"
<form action="byond://" method="get">
My Name:<input type=text name=my_name>
<br>
A Comment:<input type=text name=comment>
<input type=submit>
</form>"}
)

client/Topic(href,href_list[])
..()
var/display
if(href)
if(href_list["my_name"])
display+="your name is [href_list["my_name"]]."
if(href_list["comment"])
display+="<br><br>your comment was [href_list["comment"]]"
usr<<browse(display)


how would i go about saveing the href_list[] things ive tried sevral thing but they never seem to work.

Bump
What do you mean by 'saving'? Do you want to save them in a savefile? Just use a variable and set it to href_list["whatever"], and save said variable.