Page 1 of 1

Gridview in PHP

Posted: Thu Apr 15, 2010 12:11 am
by thamizh
How to implement Gridview (Like in Asp.net ) in PHP?
pls give idea how to develop a gridview in php

Re: Gridview in PHP

Posted: Thu Apr 15, 2010 12:22 am
by Bind
PHP has no native equivalent, however many use a combination of php and ajax/js to replicate the functionality and output.

PHP gridview equivalent

Re: Gridview in PHP

Posted: Thu Apr 15, 2010 12:49 am
by omniuni
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?

Re: Gridview in PHP

Posted: Thu Apr 15, 2010 1:11 am
by thamizh
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

Re: Gridview in PHP

Posted: Thu Apr 15, 2010 3:01 am
by Bind
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
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.