lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Mon, Apr 13, 2009 at 5:24 PM, Aparna Badve <aparna_badve@yahoo.com> wrote:
> Thanks for your reply. I am using xmlrpc to communicate with the server. I
> am not running PHP on the client.  So how do I include the xmlrpc lib module
> in my Lua code? In Python you can use import xmlrpclib.

so, your question is about the equivalent to Python's import or PHP's
require? in Lua you do

require ("module.name")

where "module.name" is the (maybe dotted) name of the module.

or maybe you're asking about an XMLRPC module for Lua?

-- 
Javier