0

I am new to iPhone. I want to know about web service, my requirement is I have to store the sign up details in to server. I have my php script in the server. How to store those details and get those details in another view. I would like to use JSON web service.

Thanks and Regards.

Girish
  • 4,692
  • 4
  • 35
  • 55
fayaz
  • 91
  • 1
  • 1
  • 6

3 Answers3

1

i think you want JsonKit please use this link , it's support both ios4 and Ios 5

How to Implement json in your project (means Example) use this link , this is very helpful

Deepesh
  • 8,065
  • 3
  • 28
  • 45
1

you may use ASIHttp for server calls.

waheeda
  • 1,097
  • 1
  • 9
  • 18
1

After entering Signup details and pressing the Signup button, you can send a HTTP POST request to your PHP server with the signup details encrypted as HTTP parameters and then save those to the database. And then when you move to the next view and want to get the signup details :-

1. If you do not want to save them on the ios app, use Keychain to store them locally. Check here for detailed implementation of how to store 2. If you want them to save to the server and then get them on another view using HTTP request, send a HTTP request and get the encrypted (for security) JSON and then parse it using SBJson framework.

Community
  • 1
  • 1
ilight
  • 1,622
  • 2
  • 22
  • 44