I want to try to create an iPhone app using PHP and I do not know where to start. Please, give me example, guides or any information. Thank you very much! Niv

link|improve this question
There is a short and a slightly longer answer to that,the short one is: "No" and the slightly longer one : "No, No it is not" (at least the client side / the app itself) – Hannes Feb 6 at 9:45
The only thing I can think of is PhoneGap but I've never used it as you still need a mac to create the app for iOS: phonegap.com – martincarlin87 Feb 6 at 9:45
feedback

4 Answers

If you mean a native app that runs on the iPhone: no, this is not possible since the PHP interpreter is not available on iOS.

If you mean a web application that is implemented on a server: sure, just like any web application.

link|improve this answer
So what is this: sourcecodester.com/Tutorials/php/… this framework don't can help me? – Niv Feb 6 at 9:57
1  
@Niv: From their website: Each iPFaces application consists of two main parts: Thin iPFaces client for mobile devices [and] The server part with application logic and definition of iPFaces views This means that there's a small native part which accesses a server that has the logic. The server logic can be written in PHP, but you still cannot write a 100% native app with PHP using this framework. – DarkDust Feb 6 at 10:06
See this page for details. – DarkDust Feb 6 at 10:08
feedback

Create an actual app store application? Or a mobile based website?

Sure, you can create a mobile based website with PHP.

Applications in the app store are written in Objective-C.

You can possibly try http://phonegap.com - it natively uses HTML and JavaScript, so all of your PHP will need to be accessed remotely using something like jQuerys $.get or $.post functions.

link|improve this answer
Hey, thanks for the quick reply. I am developing in PHP and I realized that it is possible to create an iPhone app based on a remote server that runs on PHP code – Niv Feb 6 at 9:48
Yes, take a look at phonegap.com - you can use HTML and JavaScript and connect remotely to a PHP file like in my answer above :) – Kyle R Feb 6 at 9:50
So what is this: sourcecodester.com/Tutorials/php/… this framework don't can help me? – Niv Feb 6 at 9:58
I haven't used this so I wouldn't be able to comment, if its something that looks appealing, give it a go: ipfaces.org/learnmore – Kyle R Feb 6 at 10:04
feedback

I believe your only option with PHP is to create a web app

link|improve this answer
So what is this: sourcecodester.com/Tutorials/php/… this framework don't can help me? – Niv Feb 6 at 9:58
It will help you do part of the job but not all. – ade Feb 6 at 10:16
feedback

You cannot create an iPhone App from PHP. iOS Apps are developed in Objective-C.

What you can do though would be to develop a webapp in php. It has the main advantage to be available for many platforms (PC/Mac, Android, iOS devices ...)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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