views:

34

answers:

1

hi all i want to add signup and login feature to my iphone web application. the user will register himself/herself to website and his data will be store in database of that website. any idea or any tutorial links for it. i have just work on RSS application so far.

thanks in advance.

A: 

I think your best shot is ussing HTTP protocol for it.

You need two things:

  1. Server Side HTTP enabled application that will connect to database. You can use PHP, ASP.NET, Java Servlets and JSP, Ruby on Rails, Python Django or any other web technology.
  2. Your iPhone client that will use HTTP request to send information to your server

So you will send requests from your iPhone APP such as:

https://www.yourappserver.com/Login?user=uname&pass=pass

And you will receive that request in your Application Server and process it accordingly.

You can to something similar for registering.

Pablo Santa Cruz