开发者

PHP equivalent of ASP.NET SqlDataSource

开发者 https://www.devze.com 2023-02-10 22:06 出处:网络
Last night I was doing a GridView combined with SqlDataSource in Visual Studio for my school project. Usualy I use PHP for web development, but that combination is really powerful, so I would like to

Last night I was doing a GridView combined with SqlDataSource in Visual Studio for my school project. Usualy I use PHP for web development, but that combination is really powerful, so I would like to know if 开发者_Go百科there exists a PHP class that would implement the same idea as is SqlDataSource + GridView in ASP.NET?


You might want to look at something like PhpGrid:

http://phpgrid.com/example/example-1-a-basic-php-datagrid-2/

$dg = new C_DataGrid("SELECT * FROM orders", "orderNumber", "orders");
$dg -> display();
0

精彩评论

暂无评论...
验证码 换一张
取 消