[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Include PHP files in Lua client code
- From: Javier Guerra <javier@...>
- Date: Mon, 13 Apr 2009 17:56:30 -0500
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