How can I generate dynamic charts with MySQL data? [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
This is not a question about the names of libraries for making graphs.
I have a project that needed a way to make graphs with data that comes from MySQL.
My question is: A library that provide a good integration and flexibility with external data, in this case MySQL data?
I need to calculate averages, make pie charts, change the data in real time, etc.
I would prefer a library that doesn't use JPEG images in final graphs. I would like something like
http://raphaeljs.com/analytics.html (anyone know if there's MySQL integration for this library?).
I saw the Google Charts API but I don't like the idea of not having library control on my server, and I read that it has limitations.

I would let jquery or dojo render the data in a graph therefore saving computing power on the server take a look at these links
http://dojotoolkit.org/grids-charts
http://www.1stwebdesigner.com/css/top-jquery-chart-libraries-interactive-charts/

Related

Reports Codeigniter so hard code [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Right now, I am using CI 3.0 . And for create report like invoice, monthly report sales, I using dompdf which is so spending time to debug coz dompdf not really support JS.
I was wondering a tools like crystal report , drag and drop report. I am not sure that PHP have like that.
I found php-reports, it looks interesting. But I dont know how to integrate it.
Perhaps, someone out there have solution to this PHP Reports, or maybe if you are share how to simplified creating a report in CI.
Thank You
maybe look at; http://www.hkvstore.com/phpreportmaker/
this questions lightly talks about using it; here
CI is great in that you are allowed to break the rules if you want. if its painful working inside the M-V-C approach then bend some rules or look at another method; like writing a library, or have your model generate more than just the dataset and include html ready for your CSS that your view just has to output (rather than parse).

php DataGrid equivalent [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
i am building CRUD pages for over 20 tables with different schemes
in ASP .NET i just need to use DataGrid and (almost) everything is handled automatically
is their any equivalent for DataGrid in php that will allow user to add, delete and update records in mysql table with out the need to write all the php/SQL codes
phpGrid (www.phpgrid.com) can handle all you CRUD needs. It's a commercial product, but man, it worths every penny. You can also download the free lite version and use it for free.
There are some DataGrids which have php libraries to make crud operations. Some of them are not free. You can take a look at this nice list of selection. http://php-team.blogspot.com/2009/05/10-jquery-datagrid-plugins.html
If you want to generate php code, there are free and commercial software, i advice you to take a look at phpmaker.
You can try DaDaBIK www.dadabik.org.
Disclaimer: I'm the author.

Dynamic chart library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to dynamically build chart based on user's submissions. These submissions are done through long-polling. What I mean is that users submit values to the server, and then I need a graph that will be instantly built based on values. What library would you suggest to use in this situation? I am looking at http://www.jstat.org/demonstration and http://www.highcharts.com/ now, but would love to hear your advice.
My application is in php (yii framework)
have you ever looked at flot or RGraph? I have found Highcharts to have a steeper learning curve than flot or RGraph (IMHO). You might get rolling faster with one of these two.

reverse engineer PHP+HTML files, not object oriented ones, to produce a diagram [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
What's a good tool to reverse engineer a set of php/html pages ? It's not object oriented, it's a big mess that started in early 2000 (so no UML tools obviously!).
I'd like to draw a link between files/functions that are included or called via the 'action' attribute of a form.
So basically, I would like to have a nice simple diagram to have a clear idea of how is structured a site, what variable are passed between pages through "action", the arguments of functions, in a //diagram// !
Javascript have no impact on the flow of pages here.
Don't tell me that my only hope is to write a big filthy tool to do that ?!?
Thanks-
You can use xdebug to generate a cachegrind file and then use Kcachegrind to view the diagram.

Generate a DOC for a REST API [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have generated my REST API, and now I have to write a documentation for the API.
As the API is mainly generated by a third-party plugin it's not possible to generate the DOC automatically.
So what the best tool (to save time) to manually write a DOC?
PS: I do have github account, I wonder if the user pages can fit this need.
You might want to take a look at TechWriter for Web Services. It also supports generating documentation for REST APIs.
You can spent sometime to put DocBlock into all function/class you have built
A tool like PHPDOC is available for you to compile DocBlock into documentation and regenerate whatever you need (into your desired format).
Not to mention, is stored as static HTML

Categories