开发者

iPhone to host server to mySQL and back?

开发者 https://www.devze.com 2023-01-28 05:25 出处:网络
Can someone please direct me to process for doing this? I have already done the Login verification exercise using mySQL for the dbase on my host server (thanks to kiksy). Now I am trying to move forwa

Can someone please direct me to process for doing this? I have already done the Login verification exercise using mySQL for the dbase on my host server (thanks to kiksy). Now I am trying to move forward and "Query" from the iPhone a list of "users" that currently occupy the table (iphoneusers) in MySQL. And of course get it back to the iPhone via the php connection.

A开发者_StackOverflowny help would be very much appreciated.

ronbowalker


your query can be as simple as this:

 SELECT `users` FROM iphoneusers LIMIT 0, 30;

in PHP... However, i'm quite unsure how your setup is like? Are you writing a native iPhone app or a PHP application that serves as an intermediate between your iPhone app and the database.

0

精彩评论

暂无评论...
验证码 换一张
取 消