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
At present I am using a datagrid library, but I am experiencing some problems on browsers other than IE. This library can be found here.
This library works very well and is very easy to use except some compatibility issues. Is there any other easy to use grid library for PHP?
Maybe you should consider using DataTables from Yahoo UI Library.
It's very useful !!!
MyTableGrid is a JavaScript based
DataGrid control built on the
Prototype library. It allows you to
display your data in a simple and
flexible way.
http://pabloaravena.info/mytablegrid/
PHP example is here.
There's PlatinumGrid which does work correctly in IE, FF, Opera and Safari/Chrome.
Related
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.
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 wanted to know about Data Type implementation in PHP so I need a few resources(books websites and ...). what I want is not what data types PHP support or how to use them, it's the implementation and how all these things is done by PHP. I want to know how they are stored in memory and the very detail things about it(I already know PHP pretty good). That would be great if you could lead me where can I find this information.
Somewhere like IRC Maxwell's blog would be a good starting point, together with nikic's blog posts
Here is a couple of articles on data types in PHP from PHP Rocks and dummies. An interesting aside when it comes to data types in PHP is Type Hinting which will force a data type to be used for a function parameter.
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
i'm looking for a library which can merge all my social media streams to one stream. Sure I could do this own my own by using all the custom apis of the sites, but i don't like to reinvent the wheel so I appreciate any helpful hint.
Thanks in advance.
Regards
Nils
Edit:
I just found this jQuery Plugin: http://christianv.github.com/jquery-lifestream
Give Storytlr a try. It is an open source project that will pull in posts from a number of SM sites and has a plugin system to support additional ones.
Most social media apps have RSS/Atom feeds. Use a library like SimplePie to consume and aggregate them.
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've been using Yii, and it's good, but its helper library is lacking. I've been snooping around CakePHP, and it has some some nice helper functions, like timeAgoInWords() and autoLinkEmails().
Is there a php framework or library that stands out as having a crazy good helper library? in particular, for formatting. Plus, what is your favourite function?
Thanks!
I'm a big fan of CodeIgniter as it has a very nice template system included for doing page designs/formating.
Zend Framework has a pretty good one.
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.