Skip to main content
Inspiring
April 1, 2022
Answered

HTML5 Canvas - Transferring MySQL data

  • April 1, 2022
  • 1 reply
  • 594 views

I want to transfer data to and from a MySQL database.  

 

Normally I would do this via JQiuery AJAX and use PHP scripts and MySQL queries.

 

$.ajax({
        type: "POST",
        url: "scripts/some_script.php",
        data: {
            data: some_data,
        },
        success: function(data) {
          //do stuff
        }
    });

 

Can I do this in Animate with JavaScript?

 

If so, how exactly?  I assume I would need to add the JQuery framework...

 

    This topic has been closed for replies.
    Correct answer kglad

    add the jquery path to your global>include script panel

    1 reply

    kglad
    Community Expert
    kgladCommunity ExpertCorrect answer
    Community Expert
    April 1, 2022

    add the jquery path to your global>include script panel

    FlatChatAuthor
    Inspiring
    April 2, 2022

    I could also add the JQuery framework as a link in the html file I guess....