PHP website and iPhone app??
I'm "very" new to web programming. If anything that I misunderstand, any help will be welcome to correct my mistake or misunderstanding.
How can I parse websites made by PHP for iPhone app??
I know some interesting PHP websites (including search box and using (maybe) eBay API), and just want to create my app which looks more customized layout (including search box) especially for iPhone app. Through the app, once I enter something into the search-box, I want things that I typed in automatically to be connected to the PHP websites which can find what i want. Then I wish I could display only some of outputs that website provides on iPhone screen in some customized way.
Since I don't see the URL looks like "***php?q=***" in URL field after entering search word (i.e. The URL looks like just "*****.com/search.php"), I guess I cannot use such an URL including query word like..
[WebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com/search?&q="]]];
It seems to me that I cannot even search anything from native iPhone app. This situation made me wonder if I have to parse/decode PHP website.
My question is...
1) How can I parse/decode PHP website for iPhone native app? Possible?
2) If I can, how do I make a customized search-box, which is on iPhone app, connecting to the search-box on the PHP websites?? This hopefully enables us to search anything and provide the same outputs that PHP websites gives us.
3) Any good tutorials for this kind of stuff??
Sorry for my complicated preference. Any help will be appreciated!!
Thanks,
|