Now, if you are looking for the balance of arbitrary addresses -- addresses that are not in your wallet -- this is considerably more difficult. You would have to build your own db of transactions by address, or somehow use an existing implementation that does so (maybe ABE for litecoin?).
Yeah unfortunately, that's really what I was looking for. I didn't want to have to depend on running an external program on another PC.
Here's the situation. I have a PHP page that pulls the information for my miners, and for my brother's miners via the Pool API (Give Me LTC). This is running on my Raspberry Pi w/ LAMP. I've made the IP publically available so I can access it on my smart phone. This allows my brother and I to check our miner's status when we are out and about - making sure they are hashing, check outstanding balance w/ pool, etc.
Since everyone's wallet is essentially public - given you have their address - I assumed I could extract the Address balance via ABE @
http://explorer.litecoin.net or Litecoin Scout @
http://litecoinscout.com/-- and then output it on my PHP page. So at any given time, I could pull up my PHP page and it would show not only the Pool API information, but our wallet/address balances as well.
But I'm finding this harder than usual to pull off. ABE doesn't seem to provide this function, at least not easily.
Does that make sense?