Anyone have any suggestions on how to set up both the php and the cocoa side of calling php functions? As a quick idea of what I want to do, I want to be able to to populate two tables with data and add/remove data from the db. So I want to set up a few functions in php that I can call from my iPhone code that will return values from my queries. I should note that my db is MySQL.

Mostly I'm interested in the syntax so if you have any code examples that I can play around with that would be super helpful.

Thanks in advance!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Well, to get some data over HTTP protocol in iPhone, you could use:

NSString *urlstr = [[NSString alloc] initWithFormat:@"http://www.yourserver.com/yourphp.php?param=%d", paramVal];
NSURL *url = [[NSURL alloc] initWithString:urlstr];
NSString *ans = [NSString stringWithContentsOfURL:url];
// here in ans you'll have what the PHP side returned. Do whatever you want
[urlstr release];
[url release];

Now, on the PHP, you can return the data the way you want. I.E., and XML which you will then parse on the iPhone side.

link|improve this answer
That definitely works. I guess what I need more clarification on is the paramVal you have in your example above. Is the paramVal the function you are trying to call? – Jeff Mar 21 '09 at 1:48
Just don't use XML unless you absolutely have too. Go for something simpler like csv. – John Fricker Mar 21 '09 at 1:57
No, paramVal is just an example of an integer value you are going to send to your PHP file. yourserver.com/yourphp.php?param=4747 So, in yourphp.php you'll get: $p = $_GET["param"]; // $p is going to be equal to 4747 – Pablo Santa Cruz Mar 21 '09 at 2:08
Thanks! that totally worked. I was even able to convert to XML and parse that data back in. – Jeff Mar 23 '09 at 15:03
1  
You could also setup HTTP authentication via htaccess, and your iPhone app could pass the credentials in when making the request. – pixel May 27 '09 at 14:00
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.