How to implement Gridview (Like in Asp.net ) in PHP?
pls give idea how to develop a gridview in php
Gridview in PHP
Moderator: General Moderators
Re: Gridview in PHP
PHP has no native equivalent, however many use a combination of php and ajax/js to replicate the functionality and output.
PHP gridview equivalent
PHP gridview equivalent
Re: Gridview in PHP
It should be pretty easy to create your own "gridview" in PHP (in fact, it's easy enough that's probably why there are not a lot of pre-made scripts for it)
What data are you trying to display, and how do you want to display it?
What data are you trying to display, and how do you want to display it?
Re: Gridview in PHP
i want to display the users and their question from a table(mysql sql db) to the grid view
so the admin can edit the question, delete the question from the front view (UI) using the php code
so the admin can edit the question, delete the question from the front view (UI) using the php code
Re: Gridview in PHP
bone up (research and learn) on basic php and mysql syntax - then create your code - then post your code and we can help you troubleshoot if you have issues.thamizh wrote:i want to display the users and their question from a table(mysql sql db) to the grid view
so the admin can edit the question, delete the question from the front view (UI) using the php code