-->
Page 2 of 2

Re: Getting PANIC Error.

PostPosted: Sat Sep 12, 2015 12:18 pm
by onlyindian
Thank you for your reply. I made following changes and it works great. :D

Code: Select all        local _GET = {}
        if (vars ~= nil)then
         for w in (vars .. "&"):gmatch("([^&]*)&") do 
            for k, v in string.gmatch(w, "(%S+)=(%S+)&*") do
              _GET[k] = v
            end
         end
        end


I have update this in git-hub.