Hello, im having lot of issues for connect the database through MYSQL using Phpmyadmin.
Im trying to create a plugin that connects Gantt with a custom plataform that its not the ordinary CMS.
So im farly limited on that aspect.
This is what im trying to do (not experienced in phpmyadmin) so this is the thing:
[code]function(instance, context) {
var div;
div = $(‘
div.css(“width”, “100%”);
div.css(“height”, “100%”);
div.css(“cursor”, “pointer”);
gantt.init(“tester”, new Date(2018, 01, 01), new Date(2018, 12, 31));
gantt.load(“https://qzf818.xxxxxxx.com/db_structure.php?server=1&db=qzf818&token=b634991337af81f1653735bdbff71a8b”);
instance.canvas.append(div);
instance.data.div = div;
}[/code]
Im trying to load from the url directly but its not working. I dont know how to connect that mysql database to the page.
Any help will be appeciated.
Many thanks!