I have two questions about jquery mobile:
1) If I put some php code in a jquery mobile app, and then put that in my iPhone, will it work?
2) If the above is true, how can a php code works if it is a server-side language?
There's a difference between a mobile website and an iOS app. An iOS app is an application that one can install on an iPhone or iPad. A mobile website is simply a website which has a UI that is optimized to display well on a mobile device.
jQuery Mobile provides UI components for building mobile websites. The mobile website you build with jQuery Mobile will be viewable on an iPhone and (hopefully) will provide a better UX on the device compared to a website which is not optimized for mobile devices. However, jQuery Mobile will not make an iOS app that can be installed on your iPHone.
Related
I have created a web app using PHP, Vanilla JS and Jquery that is 100% responsive and is created with the sole purpose of being used as a mobile application only. Once completed I will integrate it with Flutter WebView for generating an apk file. I will also later convert it to ios. This app is currently in development stage and I stand at a point where I need to integrate a revenue modal like Google Admob. However, I see that google only provides native android and ios sdks. Is there any way how I can integrate Admob with my PHP based mobile app? This can also be a Core PHP based library or plugin that is written to support Admob in a PHP based mobile responsive web app. Anything that can help.
Also, does Adsense and Admob provide same amount of revenue? Or, is there a difference between the earning potential of both?
There is only one Correct way to do this, all the other ways will get you a violation strike.
You should use Admob in flutter any other walkaround may get you blocked by Google FOREVER!
To answer your questions:
There is no way to make Admob work on web
Admob is better for mobile apps and Adsense is better for websites
It is possible to create an administrative panel with web flutter and use it in a mobile flutter application?
and what is most suitable for the administrative panel? flutter web or php?
Yes it is possible to have an web administrative panel and use it on a mobile device as well, I'm currently in the process of building one. The best thing with Flutter is that you can build with one code base and use it over a variety devices and Operating Systems. And its pretty easy to make responsive as Flutter was initially built for Mobile.
My Admin Dashboard in progress
The only thing you need to be weary of, is Flutter Web is still in BETA, and has issues from time to time. PHP has been around for years and would be great for a Web Admin Panel, and can be made responsive, but would need to be opened in the browser - which isn't as intuitive as an app.
I have created a e commerce website using opencart tool and now I need to convert this into a native mobile app (Android and IOS). How can I implement this mvc structure of opencart into mobile app.
Is there any other way to convert????
Cordova maibe can help you.
And read this to learn more about creating app from webpages, etc
https://www.mobiloud.com/blog/native-web-or-hybrid-apps/
P.S. i m developer from opencartextionsion.in. I m posting link of OpenCart Android App because O.P. need to get android app for his website and help O.P. to increase more sales
We created Android App that have all basic features of OpenCart website. We added some uniqueness which you can not find any where. Like Changing Color of app from Admin panel,Customizing text of app. More over app consist of Push Notification using FCM.
To get more information please visit OpenCart Android App. Support: Live Chat and TIcket system
There is no tool available to convert your website into native mobile apps. Most of the mobile app builder converts your website in to web view only. It will be very slow and not user friendly.
You must hire an android developer to build your mobile app. API is needed to sync with website.
Other wise you can use the ready made mobile app script available in the market
http://www.exlcart.com/opencart-mobileapp.html
Thanks
I want to have a mobile-friendly website, in addition to a native app for iphone/android using phonegap. I'm currently using PHP (specifically CodeIgniter but that's not as important) and jQuery for the mobile website.
I'm thinking that the website and the phonegap codebase can use the same PHP back-end for server requests but the front-end must be somewhat different since phonegap has proprietary javascript to access native functionality (camera, accelerometer, etc) that a browser couldn't access. For this reason, I think the front-end must be developed separately for the mobile site vs. for phonegap.
Does this make sense? Am I missing something that would allow me to use the same phonegap codebase as the mobile site?
Where I work, we developed our mobile website and Android App with the same codebase except for the views and UI. Everything on the web side is in pure JS and HTML. We have a sever side API that we request data from and then template it using Mustache.
We used Titanium for the Android App, but found that framework to have more cons than pros to use. So for the iPhone app upgrade we're using PhoneGap. It took us a few hours but the mobile site ported over exactly the way it works in browser, to the native iPhone app created by PhoneGap. In short, It's absolutely possible but you have to develop the site in JS, all the logic, to have it port over easily to PhoneGap.
Also, just a recommendation, you should try using Zepto.js instead of jQuery. It's aerogel weight, has the majority of jQuery functionality without all the IE bull and it uses the familiar $ symbol as a namespace. Much more suitable for mobile development.
Specifically, PhoneGap has plugins that you write. There's two sides to this, one JS file which will match the plugin that you write for the native Obj C or Android file. The plugins are modular, so you can plug them in for the native apps and out for the site.
For my website in PHP, we are generating mobile website and have to implement a voice recoding facility via from any mobile device, do you guys know any better option to easily integrate the same with my PHP mobile website.
I have tried some Java Applets, but those are not working into iPhone / Android, so any simple tool, which can record voice with any mobile device and option save / play the recorded voice on my website and mobile both side.
Earliest help would be appreciated.
PHP is a server-side language. Audio is a client-side issue. PHP has no native multimedia capabilities of its own. To handle voice recording, you'd need a Java or Flash applet. PHP's involvement would begin/end in acceping a file from that applet and storing it on the server.