hi,
I’m new in dhtmlx just one question
how to connect to my postgresql database?
thanks
hi,
I’m new in dhtmlx just one question
how to connect to my postgresql database?
thanks
thanks for reply
sorry I’ve forgot to tell…
I try using restaurant menu for iPad, and I want the content_container can load my query when I press or click one of menu_container, but I use postgresql for my database
thanks
You can use ajax to load some content from db
dhx.ajax(“script.php”, function(response){
some.innerHTML = response;
})
Also, if you want to load list or any data component from db - you can use php connectors, which have postgresql data adapter
Check docs.dhtmlx.com/doku.php?id=dhtm … ide_sample
( just use DataConnector instead of the GridConnector as in samples )