Is there an iOS7 App package to create PHP running Apps?
Moderator: General Moderators
-
simonmlewis
- DevNet Master
- Posts: 4435
- Joined: Wed Oct 08, 2008 3:39 pm
- Location: United Kingdom
- Contact:
Is there an iOS7 App package to create PHP running Apps?
We have found a package called PHONE GAP, but this is HTML only, not dynamic.
We don't want it to be fully Mobile/Wifi data driven, as it needs to be "all encompassing". So for example, we upload the latest info to the App (which now can be done on iOS7 without the user manually updating their app.
Is there a software or site where you can create Apps that use PHP?
We don't want it to be fully Mobile/Wifi data driven, as it needs to be "all encompassing". So for example, we upload the latest info to the App (which now can be done on iOS7 without the user manually updating their app.
Is there a software or site where you can create Apps that use PHP?
Love PHP. Love CSS. Love learning new tricks too.
All the best from the United Kingdom.
All the best from the United Kingdom.
Re: Is there an iOS7 App package to create PHP running Apps?
You can't make a mobile app that runs on the client with PHP.
-
simonmlewis
- DevNet Master
- Posts: 4435
- Joined: Wed Oct 08, 2008 3:39 pm
- Location: United Kingdom
- Contact:
Re: Is there an iOS7 App package to create PHP running Apps?
Blast. Ok thanks.
How do these APPs work that have database and dynamic content then?
How do these APPs work that have database and dynamic content then?
Love PHP. Love CSS. Love learning new tricks too.
All the best from the United Kingdom.
All the best from the United Kingdom.
Re: Is there an iOS7 App package to create PHP running Apps?
They need a data connection to do API calls to their server over the Internet.
-
simonmlewis
- DevNet Master
- Posts: 4435
- Joined: Wed Oct 08, 2008 3:39 pm
- Location: United Kingdom
- Contact:
Re: Is there an iOS7 App package to create PHP running Apps?
But not via PHP?
Love PHP. Love CSS. Love learning new tricks too.
All the best from the United Kingdom.
All the best from the United Kingdom.
Re: Is there an iOS7 App package to create PHP running Apps?
The app can't use PHP but your server certainly can.
-
simonmlewis
- DevNet Master
- Posts: 4435
- Joined: Wed Oct 08, 2008 3:39 pm
- Location: United Kingdom
- Contact:
Re: Is there an iOS7 App package to create PHP running Apps?
I've heard about Xcode, but apparently it is for use only on a Mac, which for us Windows developers is useless.
I don't mind learning some WYSIWYG software to understand how to do database connections and so on, for App use, but cannot find any software that does all that.
The one mentioned above seem to be only for Static content apps.
I don't mind learning some WYSIWYG software to understand how to do database connections and so on, for App use, but cannot find any software that does all that.
The one mentioned above seem to be only for Static content apps.
Love PHP. Love CSS. Love learning new tricks too.
All the best from the United Kingdom.
All the best from the United Kingdom.
Re: Is there an iOS7 App package to create PHP running Apps?
And you won't. Your only option short of learning how to program apps and build a secure API is to provide a webpage for iOS users to browse to and then access your database.simonmlewis wrote:I don't mind learning some WYSIWYG software to understand how to do database connections and so on, for App use, but cannot find any software that does all that.
-
simonmlewis
- DevNet Master
- Posts: 4435
- Joined: Wed Oct 08, 2008 3:39 pm
- Location: United Kingdom
- Contact:
Re: Is there an iOS7 App package to create PHP running Apps?
But that wouldn't be an app - that would be an App link, to a web site in Safari... wouldn't it ?
Love PHP. Love CSS. Love learning new tricks too.
All the best from the United Kingdom.
All the best from the United Kingdom.
Re: Is there an iOS7 App package to create PHP running Apps?
"App Link?" I don't know what that is. It would just be a link they would click on when browsing your site with their default browser. Perhaps if you outlined what you are trying to do we could help more.
-
simonmlewis
- DevNet Master
- Posts: 4435
- Joined: Wed Oct 08, 2008 3:39 pm
- Location: United Kingdom
- Contact:
Re: Is there an iOS7 App package to create PHP running Apps?
Ok.
We have a fully functional mobile web site.
But we like the idea of an App which does pretty much the same. Think of Amazon or Ebay: they have very good mobile sites, but people like to use their Apps.
I would like to develop an App that connects with our MySQL database, and does pretty much all what the site does. So categories, sub category, products all viewable, and purchases can be made.
Your message sounded like just an App that if they clicked it, it went to our mobile site. As you rightly say, they can do that anyway by Bookmarking the web site.
We have a fully functional mobile web site.
But we like the idea of an App which does pretty much the same. Think of Amazon or Ebay: they have very good mobile sites, but people like to use their Apps.
I would like to develop an App that connects with our MySQL database, and does pretty much all what the site does. So categories, sub category, products all viewable, and purchases can be made.
Your message sounded like just an App that if they clicked it, it went to our mobile site. As you rightly say, they can do that anyway by Bookmarking the web site.
Love PHP. Love CSS. Love learning new tricks too.
All the best from the United Kingdom.
All the best from the United Kingdom.
Re: Is there an iOS7 App package to create PHP running Apps?
Then that's about all you can do. Detect their browser is a mobile client and present the mobile pages.
Building an App is a different animal all together. For iOS you need a Mac, XCode and an SDK and someone to write Objective-C code.
Building an App is a different animal all together. For iOS you need a Mac, XCode and an SDK and someone to write Objective-C code.