RSSAll Entries Tagged With: "limit"

PHP Display Mysql Rows with Column Limit

This little script is very useful for having a set width of a table and displaying several rows organized in that table. It is easy to just display a table full of rows for all the data in a mysql table. Something like this: <?php $sql = mysql_query("SELECT * FROM table1"); if(mysql_num_rows($sql) > 0){ echo [...]

The tutorials and scripts found on bgallz.org are for training purposes only, use to your discretion.