ID:268267
 
Hello Green Lime, One thing I havent learned about on byond with DM is how to make a CGI webpage. Could some people give me some reasource links to gather information about it. I wanted too make a Dyanamical webpage with byond so does any one know a hosting service that host dmb's like cgi webpages?

Also how do you find out what type of data is in a variable. Like if var/a = 12 that would be a number variable. How do u check and find variable types. Like whether its a list or what.

Thanks for any help.
Green Lime wrote:
Also how do you find out what type of data is in a variable. Like if var/a = 12 that would be a number variable. How do u check and find variable types. Like whether its a list or what.

Look up these functions:
istype
isturf
isarea
isobj
ismob
isnum
istext
isloc
isfile
isicon

There is no islist function, which would be one of the important ones in my oppinion; but istype(variable,/list) will work for that.
Green Lime wrote:
Hello Green Lime, One thing I havent learned about on byond with DM is how to make a CGI webpage. Could some people give me some reasource links to gather information about it. I wanted too make a Dyanamical webpage with byond so does any one know a hosting service that host dmb's like cgi webpages?

Well, Nadrew has a demo on creating a BYOND CGI site on his hub somewhere. You could try taking a look at that.

Concerning webspace providers that support BYOND CGI, I think that http://www.dynehost.com does it. Try searching for posts by Oreldwin about it.
In response to Green Lime
Green Lime wrote:
What I am asking is how could u make form variables more dynamic?

Use a list, then index it with another variable.