Client
For the client side I would suggest you use RestKit which is a very convenient framework for consuming REST-based webservers. It works for XML And JSON. I have used it before and can definitely recommend it. There are also various examples, which shows you how to use the framework.
Server
Depending on what you want you might do one of the following options:
Easy: If you want to focus more on the client you can simply put your .json files in a folder in your Public folder of your dropbox and consume those data files. You can then make changes to them with the Text Editor of your choice
If you want to have more control and have a Database etc. I suggest using CakePHP, which is like Rails for PHP. You have a bit of a learning curve there but the framework is quite powerful and there are lots of resources out there. Like Rails it follows the MVC Paradigm.
Update:
I just stumbled upon a nice step-by-step tutorial for the iPhone which loads json-based twitter-data and displays it in a UITableView
