Mobile apps with phonegap + mysql ?

Hi,
i was searching for a long time but didn't find answers. is it possible to show database-driven content within mobile apps made with dreamweaver cs6 ?
If so, are there any examples or tutorials on the adobesite or elsewhere?
Looking forward for any answer :-)

PhoneGap builds mobile apps with HTML, CSS, and JavaScript. You cannot use a server-side language, such as PHP, with PhoneGap.
Presumably, you want to connect with a MySQL database on a remote server. To do so, you would need to use Ajax to send and receive data from the MySQL database. You can use jQuery to send and receive data as JSON. PHP has JSON functions that decode and encode data as JSON strings.
How difficult or easy you would find setting this up depends on your knowledge of jQuery and PHP. I don't know of any tutorials that show how to pull everything together for PhoneGap, but it shouldn't be too difficult to find tutorials for using jQuery Ajax to communicate with MySQL.

Similar Messages

  • Question about Dreamweaver Native Mobile Apps with PhoneGap

    I am trying to determine the best way to build an app for my business.  It doesn't need to be anything fancy, but needs a clean UI that is easy to navigate and interfaces with an online database.  The PhoneGap intergration with Dreamweaver 5.5 seems really intriguing, but before I spend the $650 to upgrade my creative suite, I had some questions.
    Doing some research, I have found multiple references to apps created in this way running slowly.  Noticable lapses on button pushes, pages loading slowly, etc.  Is this an issue and if it is, is there any way to get around it? 
    Idealy, I would deploy my app to both Android and iOS devices, how smoothly does that run?  I have some basic knowledge of both Java and Objective-C, but using dreamweaver seems to be quite a timesaver.
    If anyone has any input or comments about using Dreamweaver to create native mobile apps I would love to get some feedback.  Thanks!

    PhoneGap builds mobile apps with HTML, CSS, and JavaScript. You cannot use a server-side language, such as PHP, with PhoneGap.
    Presumably, you want to connect with a MySQL database on a remote server. To do so, you would need to use Ajax to send and receive data from the MySQL database. You can use jQuery to send and receive data as JSON. PHP has JSON functions that decode and encode data as JSON strings.
    How difficult or easy you would find setting this up depends on your knowledge of jQuery and PHP. I don't know of any tutorials that show how to pull everything together for PhoneGap, but it shouldn't be too difficult to find tutorials for using jQuery Ajax to communicate with MySQL.

  • Introduction to PhoneGap Build - Building your first app | Building Mobile Apps with PhoneGap Build | Adobe TV

    In this video you will learn how easy it is to build and update your first mobile app using web technologies with the Adobe PhoneGap Build cloud service and learn about two new great improvements to speed developer workflow!
    http://adobe.ly/18qDiVR

    I just installed the latest Edge Code but there's no PhoneGap build icon as seen in the video.  I don't see any way to turn this feature on.

  • Convert a Hybrid App with PhoneGap

    Hello guys,
    I developed a Hybrid application with the SDK SMP 2.3 SP4.
    Created a Hybrid App Designer (Flow Designer - navigation) and Screen Design. Ie MyApp.xbw created the file.
    How to turn this into a Hybrid application APK file from android using Phonegap?

    HWC and MBOs are proprietary solutions used in SUP. SAP is discouraging this way of development since SAP's recommended way of app development is using Odata. Odata is an open standard protocol. SMP 3 (will be released soon) has only Odata based mobile app development (existing MBO based apps are supported by a sidecar (SMP 2.3)), so you need to consider Odata in your future developments. SAPUI5 is also going to play a major role in future in the case of hybrid and web apps, SAP Fiori is a good example for it.
    More information,
    Packaging sapui5 application using phoneGap for Android [ Command line Interface ]
    Building awesome mobile apps with SAPUI5 and PhoneGap
    How to build SAPUI5 Mobile app Using Phonegap?
    Midhun VP

  • May host my DW CS6 mobile App prior phonegap compile, in Drop box

    May host my DW CS6 mobile App prior phonegap compile, in Drop box so access it from differ places eg home, office, mobile laptop?
    Developing a mobile App being an Index for my Town, is adviced keep records of shops and services in a DATABASE???

    Hi,
    Just so that it helps our experts who visit your post, is this what you are trying to do?
    Upload a DWCS6 Mobile application (that has an index of the shops an services in your town) to Dropbox?
    Thanks,
    Preran

  • How to build database driven mobile apps with dreamweaver and phonegap?

    Hi all,
    I'm searching the easiest way to implement a simple database in my app.
    I can build application with php/mysql in seconds with dreamweaver.
    But how can I do something similar with dreamweaver cs5.5 and phonegap for mobile apps?
    I would like to create a little app that pulls data from a mysql database on my webserver.
    But it seems that dreamweaver/phonegap/jquery mobile work only with HTML files.
    I searched the whole web for a day now but I haven't found anything easy to recreate.
    Is there a tutorial that explains the basic of database for mobile in dreamweaver?
    It seems a bit limitating to use dreamweaver to build only static/useless apps....
    What about forms and data validation?
    TIA for any help.
    tony

    @idesdema: Have a look at this tutorial: http://www.codeforest.net/jquery-mobile-advanced-tutorial-rss-reader-app
    It includes a demo as well as a download link to the source files.
    Also, if you want to take it a step further, you can create & manage a 'local database' without having to access anything remotely - basically handling everything at the client's end.
    There's a tutorial for that here: http://the-jquerymobile-tutorial.org/jquery-mobile-tutorial-CH22.php
    Good luck.

  • Dreamweaver CS5.5 Mobile Apps with PHP and MYSQL?

    Hello,
    I don't have Dreamweaver CS5.5 yet and I've been trying to search for information on this but I couldn't find any. I've been learning PHP and been developing with MYSQL with Dreamweaver CS5 but I wanted to know if I can use the same tags and everything if I would to build a Mobile App using the new Dreamweaver CS5.5 (http://tv.adobe.com/watch/cs-55-web-premium-feature-tour-/dreamweaver-cs-55-jquery-mobile- pages/). I overlooked at the video and it seems pretty easy building an app. So is PHP and MYSQL easily integratable? Are there any examples that I might be able to check out?
    Thanks!

    No. PHP is a server-side scripting language that requires a server (or server-like environment) to run.
    An iPhone (or Android) application does not allow for a "built-in" server (which is resource intensive and has scary security implications). You just can't build an application with PHP/MySQL for a mobile device. Instead you can build a web service that your HTML/JavaScript mobile application can then communicate with. This is the only supported way you can use PHP/MySQL in a mobile app. Again: the PHP/MySQL should reside on a server and your HTML/JS mobile app can then communicate with that web service. That's what instapaper and other applications do.
    Frankly, just make a web application that's mobile device friendly and you'll:
    1) Avoid all the messiness of the app stores
    2) Have greater control over what your web app can do (don't have to tow the Apple/Google line)
    3) Have a web app that can work across mulitple mobile devices as well as standard web browsers (i.e. more audience = more $).
    4) Future proof your application (pushing updates to your server and everyone using your web app is updated)
    Otherwise, read-up on Adobe AIR and what it supports and remember, the best apps are written natively for the platform (i.e. want to write an app for an iPhone? Learn Objective-C and use xCode on a Mac. Want to write an app for Motorola Xoom? Learn the Android SDK and use inteliJ).

  • No phonegap.js on site root and other problems building apps with phonegap

    Hi all,
    I'm starting to develop some apps with dw cs5.5 but I encounter several problems here.
    I just installed the Jquery mobile update (using the official adobe extension) and now every new project I start (using the mobile + phonegap template) I see there is no phonegap.js file in the site root.
    And when I see the page using 'live' options I see the page rendered correctly but then, when I click on a subsequent page (page 2, page3 or page4...), no back button appears on the header.
    what can I do to restore a productive environment?
    tia
    tony

    I just uninstalled the jquery mobile update and now the BACK button is BACK.
    No phonegap.js file yet....
    any idea why the phonegap.js is not there yet?
    TIA again, sorry for the semi useless post.
    tony

  • How to use OneDrive for Business mobile app with SharePoint 2013 on-premise?

    Hi All,
    I have a SharePoint 2013 (with latest December updates) that host a dedicated personal web site for users.
    The OneDrive portal works fine and users are able to sync their files with the OneDrive client for Windows.
    Now I want to test the OneDrive for Business mobile app on Android, but there is no option to specify the "personal" portal URL.
    It asks only for domain credentials.
    Does I need to configure specific records on my public DNS to allow mobile users to sync their files?
    Thanks

    I can confirm that with iOS you can connect to your SharePoint server through the advanced options.
    But the very strange thing is that the OneDrive version for Windows Phone 8.1 is limited as the Android version.
    This has no sense.
    Why does Microsoft should limit the Business functions on its mobile operating system, and not on iOS?
    Another strange thing is that configuring my Exchange account, Windows Phone 8.1 informed me that it has connected OneDrive for business (but is a fake information).
    See attached image.
    If I open the built-in OneDrive app, it give me the option to add a OneDrive for business account, but is only for Office 365 users (like with the Android version).
    I thing that Microsoft should let at least to Windows Phone users to connect to on-premise SharePoint sites.

  • Mobile app with CF

    I am trying to figure out how to build a mobile app using Jquery Mobile on the client side and Coldfusion and MySQL on the server side.  It seems very difficult to find a basic example.  Can someone please show me a tutorial that shows how to insert data and then read the data and display it?  All on a mobile phone?  I know this has to be possible but I can't find any documentation.

    suppose you had the following form:
                   Submit
    you could post it to a remote server by adding a click handler to the button that calls:
    $.ajax
                url: "http://www.domain.com/api/remote.cfc",
                type: "POST",
                data: "method=yourMethod&" + $("#mainForm").serialize(),
                success: function(data)
                      console.log(data);

  • I have Dreamweaver CS6 desktop, and can I publish mobile apps with it by subscribing to the creative cloud?

    I would like to use my Dreamweaver CS6 to publish mobile app. Can I do it by subscribing to the cloud?

    To compile your mobile app for Android, iPhone, etc... go directly to PhoneGap Build
    http://phonegap.com/
    Nancy O.

  • Question About what Azure Services I should be using for mobile app with website.

    Hello,
    I am wondering what Azure service would be best for my new application. I need to have an SQL database that I can connect to and modify from both a website and a mobile app preferably WP8 and Android. I was not really understanding whether I would need a
    mobile service or normal SQL database. Which should I use or am I completely off track?
    Thanks,
    Matthias

    Mobile Services uses SQL Database, nothing special on that SQL Database, its just like any other  "normal" SQL Database.
    Mobile Services provides "back-end services" that simplifies accessing SQL Database, Notification services, authentication, etc...
    Let's assume you don't use Mobile Services, to use SQL Database, you would need your app (both mobile and web) to connect to the database. In practice, you will not want to expose your SQL database directly, so you'd end-up writing some kind of a "facade"
    that your app will access instead of directly connecting to the database.
    Instead of writing that "facade", Mobile services provides that for you (you still have to write code though, but less than what you need to write if you're rolling your own).
    Both your web app and mobile apps can share the same SQL database (pay attention to the mobile service schema).
    To help you decide, ask yourself what other features will your mobile app require? Authentication? Notification? etc... are you prepared to write those on your own or use various libraries instead of one?

  • Dreamweaver Help | Packaging web applications as native mobile applications with PhoneGap Build

    This question was posted in response to the following article: http://helpx.adobe.com/dreamweaver/using/packaging-web-apps.html

    Hi, I have a question.
    (Quick explanation) I have dreamweaver cs6, I created an android app, a run the emulator and everything seems to be ok with the app, I download the .apk and everything ok so far, but when i wanted to upload it to Google Play i need to sign it, but I search all the web somehow to sign it and i did not find anything to sign an app made with dreamweaver and Phonegap, just those made with Eclipse.
    My question:
    Is there anyway to export driectly from Dreamweaver to Eclipse as a project? so i can export it and sign it...
    if Not, How can i convert those html files made with dreamweaver to Eclipse files, so I can use Eclipse to sign and generate the keystore file
    or, How can I generate a keystore file to sign an app made with Dreamweaver?
    Thakns.

  • Unresolved std lib methods when packaging mobile app with ANE ios7, mavericks, air sdk 3.9

    After converting from ios6.1 / mountain lion to ios 7 / mavericks, my Flash builder mobile actionscript application gets the following unresolved std lib methods when it tries to package the appluication for my ios7 device.  These symbols come from code written from within my native extension (ane) that was created and added in the properties configuration.
    This packaged and ran fine on ios6.1 / mountain lion...is there some way that I need to link in the standard library in this scenario (that I didn't have to do before)?
    Error occurred while packaging the application:
    Undefined symbols for architecture armv7:
      "__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6setbufEPci", referenced from:
          __ZTVNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE E in libcom.dddnativespinterface.a(yyy.o)
      "__ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9showmanycEv", referenced from:
          __ZTVNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE E in libcom.ddd.nativespinterface.a(yyy.o)
          __ZTVNSt3__113basic_filebufIcNS_11char_traitsIcEEEE in libcom.ddd.nativespinterface.a(yyy.o)
      "__ZNSt3__112__next_primeEm", referenced from:
          __ZNSt3__112__hash_tableINS_4pairINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP14TrafficManagerEENS_22__u nordered_map_hasherIS7_S9_NS_4hashIS7_EELb1EEENS_21__unordered_map_equ alIS7_S9_NS_8equal_toIS7_EELb1EEENS5_ISA_EEE6rehashEm in libcom.ddd.nativespinterface.a(zzz.o)
      "__ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev", referenced from:
          __ZTCNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIc EEEE8_NS_13basic_ostreamIcS2_EE in libcom.ddd.nativespinterface.a(PremiereSoftphoneAirBridge_v7.o)
          __ZTCNSt3__114basic_ofstreamIcNS_11char_traitsIcEEEE0_NS_13basic_ostr eamIcS2_EE in libcom.ddd.nativespinterface.a(xxx.o)

    I solved my issue by setting the _JAVA_OPTIONS environment variable. (Note: there are two underscores)
    I added the following line to my .bash_profile:
    export _JAVA_OPTIONS="-Xms1024m -Xmx4096m -XX:MaxPermSize=512m"
    Now everytime a Java program is launched from the command line, I see the following message:
    Picked up _JAVA_OPTIONS: -Xms1024m -Xmx4096m -XX:MaxPermSize=512m
    And my application packaging runs just fine now.
    I still have an issue though: this trick solved the problem for packaging the app from the command line, but the _JAVA_OPTIONS are not picked up when packaging from Flash Builder, so it still crashes there.
    Note that my Adobe Flash Builder 4.6.ini contains the following options:
    -Xms512m
    -Xmx1676m
    -XX:MaxPermSize=512m
    -XX:PermSize=64m
    1676m is the highest number I can put before Flash Builder refuses to launch. I'm not sure if these parameters are actually passed to the VM that runs de dx.jar program, or if it's just for the ActionScript compiler. But anyway my app packaging still crashes in Flash Builder.
    If someone knows a way to force Flash Builder to pickup the _JAVA_OPTIONS set in the command line, let me know :-)
    Thanks
    Alex

  • SAP UI5 App Integration with PhoneGap

    Hi,
    Can any one guide me in integrating SAP UI5 App with PhoneGap and deploy the app to iOS or Android,
    Help me in sharing either blogs OR docs related to this topic.
    Thanks,
    Jaya

    You may check
    Building awesome mobile apps with SAPUI5 and PhoneGap
    Packaging sapui5 application using phoneGap for Android [ Command line Interface ]
    Rgrds,
    Jitendra

Maybe you are looking for

  • FEATURE REQUEST: Enhanced Texture Options in FW

    Recently, a forum user was asking how to change the color of a texture in Fireworks to red or blue. In particular, he/she was struggling with attempting to apply a texture to a white object, and it wasn't showing up. http://forums.adobe.com/thread/10

  • Adding sound to game application

    Can anyone assist me or provide a link as to how I can add sound to an application(non-applet)? In this case it is a space invaders clone tutorial; now I would like to add sound to when either the player or the aliens fire a laser. The problem is tha

  • Album does not appear in Albums list but is on iPod

    Several albums I have loaded onto my iPod do not show up in the Albums list. The strange thing is, is that they are on the iPod because I can search for the tracks and they are available on the iPod. At first I thought they might be compilation album

  • How could i use my three external Display's as one Big?

    I'have an Mac Book Pro 15,4" and i would use My three external Display's as one!! How can i do that without using an Adapter? The external DIsplay's are Connectet by the two integrated Thunderbolt adapter and one is connected by the integrated HDMI a

  • Logic made MP3 with copyright added with Logic ?

    Where is this copyright info human viewable? It doesn't show with iTunes, it doesn't show with QuickTime. What am I taking about? From the bounce dialog, make an MP3 and eidit the ID3 tags and put in a copyright notice at the copyright annotation lin