Gridview in PHP

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
thamizh
Forum Newbie
Posts: 18
Joined: Wed Apr 14, 2010 7:25 am

Gridview in PHP

Post by thamizh »

How to implement Gridview (Like in Asp.net ) in PHP?
pls give idea how to develop a gridview in php
Bind
Forum Contributor
Posts: 102
Joined: Wed Feb 03, 2010 1:22 am

Re: Gridview in PHP

Post 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
User avatar
omniuni
Forum Regular
Posts: 738
Joined: Tue Jul 15, 2008 10:50 pm
Location: Carolina, USA

Re: Gridview in PHP

Post 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?
thamizh
Forum Newbie
Posts: 18
Joined: Wed Apr 14, 2010 7:25 am

Re: Gridview in PHP

Post 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
Bind
Forum Contributor
Posts: 102
Joined: Wed Feb 03, 2010 1:22 am

Re: Gridview in PHP

Post 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.
Post Reply