I have started programing PHP.
Now here is my question:
Can I have a lua function to read the content of an webpage. The content looks like this:
<first item> Name = test ID = 1 </first item> <second item> Name = test two ID = 2 </second item>
And save it like this table:
local content = {
["first item"] = {Name = "test", ID = "1"},
["second item"] = {Name = "test two", ID = "2"}
}
Is this possible?












